From 9e78e6b2e5bc9231265e5cb8e8ba1d7cdebab94b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:14:36 +0200 Subject: [PATCH 01/49] differentiate delete from close icon --- core/css/styles.css | 1 - core/img/actions/delete-hover.png | Bin 254 -> 0 bytes core/img/actions/delete-hover.svg | 6 --- core/img/actions/delete.png | Bin 240 -> 334 bytes core/img/actions/delete.svg | 67 ++++++++++++++++++++++++++++-- 5 files changed, 63 insertions(+), 11 deletions(-) delete mode 100644 core/img/actions/delete-hover.png delete mode 100644 core/img/actions/delete-hover.svg diff --git a/core/css/styles.css b/core/css/styles.css index 40a17a4287..7100b8c290 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -655,7 +655,6 @@ div.crumb:active { /* icons */ .folder-icon { background-image: url('../img/places/folder.svg'); } .delete-icon { background-image: url('../img/actions/delete.svg'); } -.delete-icon:hover { background-image: url('../img/actions/delete-hover.svg'); } .edit-icon { background-image: url('../img/actions/rename.svg'); } /* buttons */ diff --git a/core/img/actions/delete-hover.png b/core/img/actions/delete-hover.png deleted file mode 100644 index 048d91cee5143ce826ef9ef3d7619d835bce0877..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFtWs_ aoD4g!3*63oe>4_o2!p4qpUXO@geCyPB2g0n diff --git a/core/img/actions/delete-hover.svg b/core/img/actions/delete-hover.svg deleted file mode 100644 index 3e8d26c978..0000000000 --- a/core/img/actions/delete-hover.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png index fa8e18183ed3d126ab5706d093f7e64d944c835a..6362903937c001f3bd5ebac47fe8ed48195c66a9 100644 GIT binary patch delta 232 zcmV+&}~bf3=zHpZ|7e*Ceq`u^d4TTzUyp%6)=tL3jrL8e=F`1_{v2FgFH?d(zz{22yHp2FkHy i{}pye@U`kQEzujdT3cnj%BXMv0000BD)H2AVO_LHz0xN sSfI!Nio8H^AW|b5DN9I0Gcy4I+7e6GgT+Z{00000NkvXXt^-0~g7-r)8UO$Q diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index ef564bfd48..08ea381f37 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,6 +1,65 @@ - - - - + + + + + image/svg+xml + + + + + + + + + From 257ebc2830a04272c0b662cce85fea6470e77f7c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:18:45 +0200 Subject: [PATCH 02/49] use consistent icon for 'restore'/versions/history, also SVG --- apps/files_trashbin/js/trash.js | 2 +- core/img/actions/undelete.png | Bin 624 -> 0 bytes 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 core/img/actions/undelete.png diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 691642811b..82119a5951 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -2,7 +2,7 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { - FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/undelete.png'), function(filename) { + FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history.svg'), function(filename) { var tr=$('tr').filterAttr('data-file', filename); var spinner = ''; var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); diff --git a/core/img/actions/undelete.png b/core/img/actions/undelete.png deleted file mode 100644 index d712527ef617dca921bcf75b917a1f728bc2102c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 624 zcmV-$0+0QPP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01m_e01m_fl`9S#00007bV*G`2i*Z4 z3Ih^4(F+g&000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0005YNkljtP1&(N=qgyIH-$IORb=2uhU1ruT51DFWl*#dmi_k^F&qomon=Oo)3xb zj>=#_0(psc4$7&g?G1sdimGz4pCVn^hZoMX?U1D;m^xyn5ga2-8>EgMC~^JMc6Ucr zR|pFGxD+(hFimy9A+%|hcwz)YArWV^HN-675Z&{FTb~mR34jVvp?Oz@d)n=NY5oQ~ z`(jKYIP4u7N7eWU&h>KHB?ua7q>ewLq8oiAqomuzR1GaPuD&~{sw*O<+b9ELz}Syv zMp*p#gzxw)ik#KgNBVfP%+gQF;~9XUJIs}JDhE@4vMuzLIiQ2ZxfY*|6Gvsgh~%X| zm;D{Vw`Mv3XiY5nYq778i8U^$D(`R7xjV`$1cz{BhONnAV<;qJ+}Yg341z Date: Mon, 17 Jun 2013 12:22:09 +0200 Subject: [PATCH 03/49] transparent background for lock icon --- core/img/actions/lock.png | Bin 182 -> 295 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/core/img/actions/lock.png b/core/img/actions/lock.png index dbcffa3990f7dace24aaae6836977a142d57fe47..f3121811ea69565b897e2806f7d9aa66ac90bd68 100644 GIT binary patch delta 279 zcmdnSxSVN%WIY=L1B3kM|A|0~rP#?cgaZg_I8r)*e9i)o$YKTt-s>RD=%g{b0w^e1 z;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6j0F;PZ!4!i{7{A^|_oJC0IV( z?>d+z*ps&Sp!Uh^vi=VTURl~SDcn1fu#v02ZEMZH==uCdk_r+MZc09zJ+U}UD0t0A z{&j}ApUOl$G(&GZ>T&(hlbdl~L$ANk>FR}5T)BU~#LvijGiz1bKIgk;iA`s{&sv*3 z+_{kF#p4@71w7|(H}p?Tnmy%`(B>UQ6_4dznnTZ3^4(=GY>{g_Xx6i?f4%x2<~qd( aOw%K3&I{Q5%Mt>*n8DN4&t;ucLK6V}&2v=% delta 165 zcmZ3^w2g6sWIY2ASj||l7f3M{J9&n1JmZR<3FL4VctjR6Fz_7#VaBQ2e9}O{Xipc% z5Q*^QAN)+|heSn{&o|HHQAkqUe0$2vcRHsNn9OflIi4x&+Z`b4+Lmzi|5vRAOzT_) z8f)}dG}M~9EVv`t?!er?#8ATHgIV+1-t>m%6gev{5wF9JFaQ5%*vHx)6&$7Z6lf2F Mr>mdKI;Vst042>j5dZ)H From 344a73b173c3dc0a1a203e5db4fa64adab7f0e48 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:26:32 +0200 Subject: [PATCH 04/49] use mail icon consistent with Mail app icon --- core/img/actions/mail.png | Bin 405 -> 303 bytes core/img/actions/mail.svg | 100 +++++++++++++++++++++++++++++++++++--- 2 files changed, 94 insertions(+), 6 deletions(-) diff --git a/core/img/actions/mail.png b/core/img/actions/mail.png index 8e884fbc0ea87ee8549053f603bbf9bf55c29817..be6142444ae8052e6f96c4b8afc3d267704d1507 100644 GIT binary patch delta 202 zcmV;*05$)W1Fr&*ZGQl)Nklr_MR^`+ZL{%_JcNRaUK%`xgM%Abc4cF&QKMz?eo)$N(qw--Mjd z!!ZvC*vE}mkRv+S<$8C5ExIL;1KL;@`VYb>8U@G!bxfY#Rc=|2~>PY$^U<*8}*KjdyZyb!vFvP07*qoM6N<$ Ef?jo5dH?_b delta 305 zcmV-10nYxf0+j=hZGQn0NklS$-FB#tb_!SEaWFs;Y9Dro1c*cU{M(X^P;C8Fpa46iAZ9 zQ51={<$2DAVQ?JBJdUFX&X{2b1}q#=;JWU)ZCh@dh8@Sbd9&wvBG)r8VBx@}X_{Wb zFnnv=6|ivNk}9Go4|~PW*<89D44u~8{V^x{_rLKK%>&TsaB3rf00000NkvXXu0mjf DVI7Wk diff --git a/core/img/actions/mail.svg b/core/img/actions/mail.svg index 2c63daac03..6e8a4bd7f6 100644 --- a/core/img/actions/mail.svg +++ b/core/img/actions/mail.svg @@ -1,8 +1,96 @@ - - - - - - + + + + + + + image/svg+xml + + + + + + + + + + + + + + + From 078835ee9dd02e8f4cd8387c0eeace9913dc9349 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:27:45 +0200 Subject: [PATCH 05/49] remove unused big images --- core/img/remoteStorage-big.png | Bin 8372 -> 0 bytes core/img/weather-clear.png | Bin 21917 -> 0 bytes 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 core/img/remoteStorage-big.png delete mode 100644 core/img/weather-clear.png diff --git a/core/img/remoteStorage-big.png b/core/img/remoteStorage-big.png deleted file mode 100644 index 7e76e21209e539354805d12d8f92c5a8176c0861..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8372 zcmXw92UJr{uucL2LY3Zo5hjiQbUP!5NV;RKq5%*QHpdyLYE>cMOr9^ zjv&&d2nY&-FaJC5-E;QtxqD}KXTF&;vu9?XnVIU-QFBoP0026JJ31DmexB6OR1~B) ziYm;I)R6~i8CX)0o=7UUr=)L){~fy^68+474X7nv@Q5_X8LVp?e9zA#IP5{7J0L79 z4C?jJC&=}IzdO_~(6eCw78d{@AZMVXY58b=uLzQB`KfupoQst_0F&QVaI5uc_=f2I z1ah$-_xlya;?cDn_6elrqL6o_<}34Jz0yi&9ZaPrvr<2+uCO<`9jH%MKtNvhvwEDo zZ$|b0KX-5X&FR34Q^IYQuV?>)_v<>1!!9=pVIez~1^xZ~%5|nz?IxM$;!$POMqX>y ze}zG5V6cd_9MiRQ5m7do?G?liu3R-#1?xc7BvmmxyDdpS3m& zyCH33uWR{%=R#{+ubjS-Oh=cnh;FtzZ?`C#G}K&^+N_Wad0r$S5htb{swiN;O6cT6 zEnC23Lz76$GCN0z(+T4gZBO#o-i1GZk{SB6NXYvGxK3impsK{;Hra4sN^wx(>$Chf z!B)|a1wyfvbQJjNMLok!iP5*{Us<}^(wn|3CS!M*KhiUO+0m@|%o`_X9ZzZNM9t-^ zx*2y@+pgD>C7cM=feSa5o{V)ay1W-@+W|`p zb|k1;9{~9&c_|CJTY4th8WnW27?4)&p@un!;S|1#X#Oo$Y6X~kgqKXx7c;35WJC(dKP=aPFoYPOc!qy6MCR=c9jCjxobIV zI_?biR{P@Ra(a62$n!>%1Bga(KHb`1e<6i6uLC`s9y0j`sG5>XGxvttJm#X2&=$z3 zMFyhU6VG@@VMI#h>!&bDw)V`y3-A>gpqm@6P zO`3xCE0pN|)OF~SsZ9u$>~Zo@tMiWazn*McA}hW` z40Zw0AgW|yishAy>(>mG-AJ*HfS;CAx~1@>1)%d9rXiCVgHBEV$49H#to60olg;1N zldY~#QgNcgHhc<(t$As6g8+GUXXUmH`TQhmyCCpf?=i66cGj9{_T=AJ?wmE>N)qzQ z_s&^iV_cxQ&n#)}2wnbOam64G6Fo?RYMjWS$VzhJo+Plvio(~&|Gjca+6x zh}k0dAwC8DiS_Wq7$? z|JZy!TvE!3^QlZ>yzyHPi-dIUj6ZNOpafX2ay#)i3mpPJP1+`fv1 zCBB?BOBgb7U9v~#x|bWiAIP~WKN&7hFF$34x09onr5=}h)q2=za(w_rFeeFFcONbN zF;UTqJ#3)Ll0ZFdQ=KSd9p{_)$^Co3yI`7ubt+kE->+vcXMpxfs_Mg_Vg~;T$)Wcx zPh&@w?>B+<$_~DNXj3y?kF|b2_9b^Re-5DsO}M+H3z3J&LZs^QlI~L=nTLMfm0FoY z(nhMA*0a;lZGI!(UY~ z8e%hHtn(q(Fek6dNlHWh8(r1YPG0;Km+jf(Vmj>NsPu2goKqA|h^S?d<+>OvC!i6m zF{$N2<|{Tqt36JJm;2sE?pWpAgqcAE`LHNEa%`C(Z1iDMd4`zcYHJu`>m%mIH0R8+ z4)zQ}j=I*~tu|HhdeUXMv(~yJ84+ag`D@CKVR_v>L~94#A0Z91bKZU>LE^~z|D&2& z%RxCy`)Zq@0N5+(Z{*}7%%P8CQLzArN*b>?Wybeu&+{=elkpYJi0w9}_)|RrWD^Pp z1|7py}6)($qVEJc=fhPk&`f^uhrq#z6-*KrMlv!Nq(o0re&OS7O|$pU!zP1 zPU3T}b!fzSjZV~?K{Op+P7g7^g^omZa&NX;+B5yW|0GKR`K-dFV7_MJne`*Mn4Q9n zgaaB*a4OmGG(NJ!7Kp$3Q(?vw1eNwZCZA=CaKq#_jP@=2E&aTu4)UVhGbxXMDV#NC zcCI!Bfrg+@$=1|g%v0mMigqCLO7w(>9s+#06YY1d{N;bjMr+zaBZfQwr6Z278!hm1 z60##A)hU|;$l>^_+&50PSr5!xUH1+_TnkFL9TNKrb?I-C_TixYt4_LNiF0i@mSQi;{g)?m^-S zC}nss@o);B4Od8(ij8+*lKEB^hviZp;Ziq=SkN%qp@*%*Pj z=EsCkXOePA8@2if0?__u;9vLQt}WaB7DKQ!XTf$A`hZ*Mq{L)fJ}{PnI*-Bmi%!_e zQj+{8qPIMDl=bMYP=oeS437FBR7&e~*uvPEoowE6vc>3`X2ev$(rbFcSSgTZxa)C7 zOS}XxzT7{S;`>Y#$zMJ&eDla&0d{wTj1xSP;3;n&^KPniM3o*k)M4&>a)uZxwHkf8n>S%Srm+s2Xyw8uk z>&0E!(nJr9g*w0o^0}(|v1_&5lncf{We4Z)pZ@NbkG4`5bE>>)Nwzaj4^7om`z%pD zYDk+;jG>u1A%&Ru?9}nAOqr)s(^b)N=RzU$gT@3z+8p3w(9G%G06cIJ%#*n1N}ge|E*Mbl+AtxVI@C)dneYI6E+4&kfycEiB|q7t?v?+u%3mQV zD?2rQBmo)svgU9R_+15z{VyOZvj=8Q+KqZgu}CCgPH2BEI2)18v)|#X*Q;ioN$1Wy zm3lyJUCI*7`07~}mAyZ;b>l-}c2w;rJ%&BZ*bF2*GeZixX6Z62?lv7KdhK$U;QnZN z?|U1a3Vllz+w953^LX&r>EFC+!cO?HAdniyYFKFI=LXYt)_aad#lPU>qjdQ+@(NV1 z2E6oNyoD?P`fkwYq{oj?%s#5TSv)naA_mldP~+iT$~@29SoLk=`xy*8epF=R;Dp;= z7op7Nz*8I@J7E93OQPe&D-u&_w!aoo)`kx(GA>LJsnV<*1WNrePZB3OuATMFsVEo2 zH{(#$WCiLmQQaPH$6sBq8!yjPA>@d2qIPy3tPzDmDiy2g7?N0hDD zUyc4qg_l}O(;+=hujCBbZ(v+tLrS8lu;mI%eQZ%ui%t3($t?{hT?>)&h-8!3EF#w| z9{JD=^?yv6O9^okL$b(I&vI-b77y(I-m(T@<55g`E5x-r$Gos5{$scL@MiKBmjN$9 z-0cs+FEClfZ`bKOXy^U1_yh+iO85K&|8~#;@fO%|U*_q1W?8MgQ_p%*q`jjAxn1wD zzuAtxKs+lMJ?8Oc=9mpu|8{?*GXz~;xS<;Bm>gg~ACBjhQ&(8nx6mSt2@H5M5?`-1 zk_jObWx8{J=J_oDSifZ(DK{gW#^D>Me80hkU#sKM&UV`s`|m&6phEJ3=rQ3xe@(8U zqAO37nPa6W@E@zQcogxM3HaOi1RUyFV_x`Qv4>ccHl_6F?~#H0iL_`Fb(F+V0V1qG zyomTK&UwhVSI^b7hP%FtL*uyzy0pP7?9>b>+m*R~hBebjtjh$ZyTG{(=8G*Q2>yRj z9(0Sa6m4nTFOh+ghIb!C)j4mhliTOR?>t=?94#`@#5`wC80&7FtZG2>xRugga?Bv$ z*r0}OB_9p@g3(6k_oVT_{5lSGca0-)?^C2a-tv#l%sZLyex__2U$iuh zYVDEmvPsQdm)P3(l{7bETQpSfyM|NRSFgSbBpu1Wad1&J+9^QGG^oR0Fj4V3H|lZ7 zUNXZdP-Ajf(T44lhLX3MxfQ{UMysZ#Z_yt1&59)1wf?e_<-3l~?dowu@M9zItSDD` z`(LzNx0Xk~WYp(xO(&Cvptl;Qmb3TDVZvKKmEW4-v3>1){f#pZR_95f; z_Qe4L`cD3}nDSV$x>wzO;QTb*Bejh`uNCHGIy1SEHHHBD!QZudxj0iH%wwq#-RN-z z&KIbx`u8da{yb{DqMJ|;GU?F=U5U@&VhxGtY};mwgx?Na_Bnd1aY@Gm;ntGGG{^1j{T2?S zk0Bu64;f<*ARU*D_357oJ4BbldxN9Djjy<1m9;LrabL)jehVWLk9$NmYqa3n1yOn5 zv?>&zUZ+fz9Hz(15QULzV8RRkE4VUy`V(J`gdZ9LFR$E8N7?aJyNviRw8##{)8V9t z4Z+!JcNXIBd|EL>VSUDh&h`w7FHF`7p?8;y3wzQLF=dBWs1QYS?by14V)OH^$?+Fe zaR9=Y==iO#6W#Zc$2T!VP(J4Mx(b(df-C?dt%M5 zTO`XV^&{Yd8Ory&NpX^Di<~>aJ}Mhm6~pclnI>{LcJHz7wr$1Uj?gJ>DG;;Iu{-kV z&p0FMhv>UaIqc=aiNxML3-nR4^srOghS0m+%|};=zfe!=y@QkcL-#eAi4bI|c};12 z`bh*&i>jeKyhQ-F=Ux~gy=W~Swi3uY{J1aQw&5a+=&aRx^E8Rb*uxI^@^5<- zn(A|M<)trIZD{>~X0y4a|F-fcV%tzqOst#p?TNp+0q^1g^EbYCYfLCzWEFqs{zD#;q*ymi{beu7g2p=lRumUI=QQ%BkB9))f*JrZSlH=e1S@O*nP`%dt zV-z=d@#n?DsHPfVU{qj`pGfTW^FC$)*11?T4CcJ?p}YEcWV7HC4{y`kwUvIkw?6nn z#Y!bc%G+>R9Nkj4zU;`@($mje_)oER2+OzU_ra5>s}ghT$_(*7lE{xwD*N`a+Usmz zge-Z<>`gj_F4JtNAdXi@fZH7rc5E+8vtJgf@%8wrO171ST=#EOW_Aax?ELK2=uW<^IswO3$mRO{5S|7XfLJ! z$=03uyG3=aMGss(k==~sS8TFO+{LnF4~f*&eI1}c7jTy!o=2dqm51F@L!45|=tNUP z^+ngoMs;GcoeA4qbU8y2bu7{ z+7A_gdjYNyr6!F$8@C^rV)}@Q=+HRVRZn?k?pWPo6sALTyqu?`d8_Yk4H$Q$wTRLG@UMw}w93SGt zscF?wGYkZ*^ZXnbWZ*ae{A2jhgxltw#mC>ZBI_H6pLXSj$cl?LWN*tAG9qEV z{|YyQN@R`VDdQ?Orzv3bTU8jj{_zm}hK85MtsC^;fByB$E3xAu5cPpy^0rPqdrkgw zWp`UDXr>cD)k{=Jc6M{PQh3QTs*&J+YfJW5C@Q3=BraLzN_8ez#2?hU2%ob4{aC*M z^08|QG9cpy%$Ln#qO~{5A};|O;a<)&g=j=S!~S62IlBQ_E<%UuQi#51&IvH?UThmv zull@)7Sgh7!{}y_-(0Mq2>KG}12lQwbnUIi@T7;N4n+jVKz%R1S8tud{>IJrTny_Z zrNE%Sm{4qsSxmkO^f415I%`#oeQ5Rvsg|)G4vLI%K(|C9BXgb+xF9xt6M%z&a;L3(BzHGe%dlBs4dr zfCyS^(lhdSYC3pHts3FvM~8dhYq{Gf-qb@+mF~JHdzV;ap-E#WuK>sxb<8Y2rTxX; z#JHM8jt7b^K9vpNrhKXX4Ep@gKk1?CHRKjR-x+G)`Cu_knYlYra{&^f$+VXc6b1aO z!cg~saV(4hQ8Opq(7aDaj=ykl_F0gw^Xe zV8f}l65U~>WJ#~Ic8Iv6sQ0Ek#c0K9eS*s`KW5t_qr^b)7g3P3c!b7oK>mJa*R>y8 zDW)6wCSJs4vx^H8puJ25II^89~e3=2TXUwcc~mk zrYJ*ooVU!-t?F>K{QVSb!92mz5VL_7cYaLToIE#bk3SWp&RI?}b;C|+i8VN`DM8`i zKo1SoFS=Ecu6fEzY?5r$cKMK4*IF=MPuJFV?$pL#t&IY<>?UA~t#a80btWUwtDZ`A#SZhO3! z&AjJ*0RJGD^xQ>GL@3wol^!Kw0)F`P?Pkyu*7U9zhE{pRrt(fI$MfAy*>$R5!5P8g zgR7g4+GW!?I^D|0$-?30h$7&5HZO{JcSy6}+Ns?-XI^$4YW3E(N6Jd{eF;vPtb z4LBdsLj9?%?tXWSfgWxftN#AD{UB{DAB=R3B(6U2g{AUDq&2c^x;B$qqS|rOhGw6`7~sxJ*VQf#o51jn3?J zj@U%00VK?@Ri*dEat151qh4fV&h)IU`#C)*-8HIw$amvBd}D*t4o!TD#Yq}p-X3~*3lReOv%7`dRkj1=R#JR#E}8_U|sI!Vok4iNdUsRYh0MH{u9-ypbT{<0+Vfr z%KY9_)^SgFDto5cxuLalVL~W_e7)o9XByoHGkQ(^ZfrQr$G|HJk3u%@FCy&nEdLot z5#+uaxe33QtU?*A}L?A^tR>#Yf(i``3K+Hlk~|F`9l2#a+%6bMTW%LiMcg;E*l)b@#L=C35Nx zR_t{>>QHpXq2IgPdUQjJji!J`h5p?VaGsH^OhL;cajgwY1hSkoMT} z34NJS&EB7O#@c1IoiNC1*gMuMCfR+#)-` zLHllN3J%E$tNJJW@ltQk?tZ*=j|%DKcn5Yr=>2~X>%U*1#PNCpec0OhDQ&q1lLI)T z;1{wz)oKr)SZXdPv%*}}ruS?MC#w^61f!fYY75ADD3`)W7`gz56NbULEWc$1kBbzH z1ZbK)LTsb)0YBc6@+$YlBh`HGbDyF#-=d}J zh6iIwS@^O2OE#-moYGf2cb)WDMjQW+-~u`oYF^6aMm-aKh?EnFc0}3Jqse1jGD;zo zNF>$S{9g-NI5Fl0@F0-|RY6NtF+7!`e2qO$)2^z3;~?sH~{aT#wD!5_`8M zU{nxZj5bL7;sD}T9%Os)qs`z)0wey~N~k{Ag`32<)7yv86_G=xrKB)!Z!hhGbsAeL zw`q5tOs5WJH7D{qsugUX;p(+n1aXvn3|v$dacDZOIv?O4fDW*hB7fU@#MA(TKsHOwJ~M9boXdd;^gDb}Ly2jLyIAi3mo@|12pr{vABOi?$Mm z6W`s*3CTcb^eO-&K?gsv02Z($i!5~Q15bvup6UsGW2tV|m7rC77v{@6i}Fy`cajqI zS1%-sHTpqWbWo>Wl|eq6dDYN{%51VaNE>tGP{MFlCb~&;0Qj4$SWOr38EkVq{CPQF z{i|Z9TT-F5mA@$MrveLy<(`Pz-Q*|fm?!e!TV9j28A%|v5%*6Xg5j!Ar)LsmgnXHS zb_QM|r3yQVX6>*xk-oBWof>HDw4m`H!CgW=`hvb?cHLPawn_8)dz<)gRnSUO6;b%W zRjXom!7aTlz=l3wc2TJ**hzFu&)8d%SP8Zomg|;=%8{*|5_>gb|mjW zzy>q0v4XQl;v|-maY~f?TYnRRgH}|QRwu;%cStpR?Jv(S4QpyH7gcuBWL*LXyMVkyev|!xL)g*I&AYw2)T`(y1;e0WPX_9(v2p%(}g~BinJuJd$iIaROCa~;$!B(&3_cLH5|NvOP55_4FiCIuBlGFmUG)du`clLr^f*=Uq08*m7v>`^8 z2-^~Uk>ZrALZ|XA`I1ze%HKfquSnTd$+vtF%H@>f5+j=_(U*vpEYK1y!XgP?KmY`= z_uaX@x9-khceuL%L4lO1B4gtzJUBgF@6OCS=Q*cOpPmu#J$LcX7mB;MD}a9vkTE{$ zm7mlr-r!vUd`9q*SGwmfX^1xM@q@o z#)p;y_1tqGUj*mRqnDPDyEVY4hTA&L1BN@HQ0ZhOV@IlIpZ(bDzBzf42yo!-T>*S5 zSk~Nv@tO=!oucMg3rL;%l6#aYxuWYOJSz^93G1h=O9Gpl%tBI2xQej1#w zo%N{YWi%%~xRn68{ZjJcuNa>%{GtI#7Wx?+V}}uh*jaBr&(32#?0M)&f~=WVkRDeP}V5 zEJrvSE`ws5fXm3uQGP}-ip{RQ^&XCEP11~VMZ_BR?h^3P;ek(91Y29Mnm2BBR9prD z^Kr;?2)9Fb*5D-MDjJPpiJLLHtar0ZqbD53D^Dk=*95Z@J4eY3`CS2goEFVF07A}w zLLw*C$Qo)m zMBQ9iE*nO~0OP;6hvqerH+s>9g`nA_OVeIYOQ#;yE;De^>Lf;)^e3 zfg`4^>il5YaQ0LPB9X3gR95HQH)0SuM8z8qgm`B{ErwM>KyK>kuTO`#FuAp{ywz*e zvU~$=ZR#8&+6?)rxN%>v%3T56iW5F(69?4!^`!tVf4n8(_xCc#ZU#Av!iptI+q_3W z{k-tfQp_l(viTIfA3H$Z#A2q#D63Prn1n#G{T_huyD0Qd9WBxRmJbnr|5P}on{C?f zAu3PfnBg6(|MMj9P5aML0CzqqYcpbq;ft4RJTy?Wo{ssjR;(O~;B!v|{JS%I#oe1RiIRx#z?V(Ad5{#F(%GKf?mLR^e+E5hCiQ+SPN2=XlEqJganX1XQTM)m{Y1o zF$#zWn(nIF%~EFwiL;tC2T=gP9g4r#{#64g?$!W!zZ;PsoG&QJ*rHB%HDRh2^YoL^ zZN=jcCMZI~JH0yp`lR9c6Pnr76v42xxoy&@;*Hr(NELKg&wXi`-}a?p#2y=jbmIVa zVvMaTpGUe36A|S4pQBhp^Z3I}ax;am9Fftyn+s=-8K}1iR&~U%i6a9BAcBb8Hud*S zos-`ze%7G*r?mt;d1=J=Pfvf~!)nnZqGal7O8TCm)@Z!HhVKz3+c?cx)NX{{a|uk` zWv$lXkqbgGFrle(Ekz9))1BEUgd%366L~dETFM4Y6QakQpH1>!I7Q%U*fPdctsrr= zSWt5*ipvBPjW#|DDRS5vMNC~#RB??kou;-?l(jP1*=}0E0pQ^SLO7Q#Lb=V)f^ml1 zJzoANR|8xe^!V;Kj@+znUy-nbBBb?J%8skknwnw{a`r5WXSuPa2b@GRi()6&NN$Pr z99Iai>xN=QSu0I4JxdX#6u~^Yttfp80XXaFmVy?CGUjGC_Z688Nq-(7bL)l4)Lg@(3@ZpLqs3 ze-=&cvLfolj4H_oDpIs>d0gH5EOsN)B&-rd5^Ji4HL6*vB*`-|^jb03b=%jsQwfWiXrrU(t!?j$ z@%SVwokRfPEUIjb1*Ch|kvpXETkD+*zZKD&Z}aqz2A@_9@bmvF)UUm;uBJ@FpM7oN z@LHFqY>?wvcsDFe6=Kp^-d${R0ex}_jYg0lCM2TXG{oxzaydb>vqYJvRC$wN;FYSn zupOhb1fRDR<0(n*!RZ-dSF5~kI?AT?!<1l@2wAL(pdAZMuywSw#T7H!jEwkUD+T&B!q>pE(S=&TQBqvFAcXnhj{j;!=;$@>L{oG&kDDN zsLyT&IEVQ-t=;JPZ@onv9^<>eKKuT$>X-$JEu!sE+Lr=+(I{$5kJE1@bTAb232Sje zR*T517_}{h9qi!K2MRNaaW+xLX=lqRmnRF(_m%bL2$on=%^=dr%W&E#)egPPXkFDo zX1tVjoTM%@Q)GIIs&=0WDg}ekXxGH}#F}^-B}+7VwW8OVA&@?EEwu>&vxkJxSO_Z> zoTMmMIF8zHL3_AK1m}M@EP~(b**Hss#7L+M!VwkbEQkC;Zo%gem@zb^{XDTV$*s|#)Yop7W5}zW{auUpX zXHMX=hE-WuO4Y#Yj(BFh8nu;Ei=p=!qdcQ1&`5Qxe`2A(! zpior&+2?DF-ZCt`l!5oVVt7w2L;WHrzLoO@sdfVaR6Mj#Ql;&}`gk45`! zUk~tNAKXPGe3ED>pvW~V?T|j3#tosp5^1Yrs6A3v)AMAbkdjuV@;VYtA!Y32%}gQ3 zH0gb%v(sMkw)VEGghi){M8Se`Qj>r=!FTa`Y+X|uJ7ZPZQQFNwky4nhvu?^)be*&F zNLACSXeb5=qjDY>JSgFo!=;P1C`dt9mb(JT-x$%J|0%-xBWnc2yF9LlDRBV%iq#Q>7l;_e? z!tXqtz@&0MgGX(zRZ@=VKl00LuL_lkdaL!aBpA@#id?c5dhd>qCl8epbjbabalV81 z?aJA+{0E1clxtoVw<0^tj6!5=Cx@)gsf)&4G=2 z#y2(t`kk&XJ7196_7&$`LzybXsuWWQMk`#j=o};Gv&7|eiqb{dfR-(bR#B8CiluyD zXKm>NR}msEKu-oWNOBtjpzWRNyHilRoq+8ldLEAR@=6w zOONu1@*-F-QaPwRTGv3px*-ID*UF=z5}d>1>#B$wdc8JfHtW+|4uiO(<55o}Qc4Y9 za^9^XegrDVMWTw%()jg{60Uwr)mE?IrH@nD$V-uoQYem0QS%ix>(h%X%-jN1_&JJ= z|H*HDug8VoXmGI%m!s~hN*Al<0x7XQ;t~^#4fMd7FOWh)C!kc@*rl z_vWOeTW=8bw}`fcNFH&+#&L#e4awIe*jaH!e7vmka(kni8g6lK)|Y#v=jwXsmCm(9 zvk#9Ya*Ck)04i;xq8bvUs2~ARfCuMrx)8RK8*owzOj4Ds7ddiO*&q$CqzPc;zoDu{$PIeO#3xVM%u1oXrBQ!~80C zIAqYBLU+D`>-{lb`@h%u`>!{%$~WT5)>-<|G>zU0_5N!&9e{o3Obt^D&>I>5;-w7l z{T;IMCnW$;;N2ZF!SQU7AYbQm-yZD0kw0BdsLgkY%b0~XBJ@Tu8f{gxRomOUTKbh0iA9U8u0moD{KEsVR*9r0^BswXhbjDX&7e#MnYt=1nUULt! zQ8i4438Mw6J@WL}>5pMri=YH>fS*`EJTRu`05bW{3wuy|be3xCGWnHP7{2uaMY-nl zm^|*v8#9ZXPn)aZ*qVCwU<^7X2=GE2H4Zm@Bc^0*jP ztlMPuy4Gcds~w}1X{z+JQ!c@5yspCG$ZC6{8b&AjD|&kUYTk0I)l}FIO?vz*BoCg! zOdmsVc(HqSOp!wZ5D$J#;e+spMWFDzV}*?AMeoj6s}~r(@gjrO@B6$~4bmCjnmH0( zkHY4Hit<-TierU#O*a=Dx~X zBlEAebZ7e-jnTRNgRgtORLk#8x+G2_9j$WuTRXRpctSt`3sj$E2Dr5gRRab;^~(?6 z`f>WbWX*b^;?AW85*W?S;ik}X)m8w7d+teQYEyNfQ3rzUF0OWlEjJYoa zK>Q)E%Va2k>|2ilrw|n0D?o$aqbo9o=l_)6H>H!cGSdCneeXYE5%&ENdaF+BIf=gG)SQ1)OB!kk1+NFLQd>$_@3~^`F=h28Ge7?0V${Xt z$DUA@k-hgqK)QBazdQR9D|0oLHY(O1p2Y-Hg<~hoF1`D~Lm>&-p+3k6Y5^JTo4=9t z^A*5Ec`UHlFWITr{VEgOT(o?B4rP9kqI`|^x87!9A>g&SnMy^+jrOst4IWp{wW0S8 zMJ+*WWc4uDE?D%Yh(tz%s$w?larEk2#bfrpawZzZGW9F}g<$r6paiM*DZ6$e0A&#Y zL=HJ!Kt9Ir$#;$4`{xAQfdKGk!T>+E<$JHPb?(10YE=F9QT6i7e7s@8Fhi*=sIExS zxksGw#P9x56{?}>KX4kSd*$5QUNv^s^pzv$@EwCwuI$(610AGjeTDfqE^^}a{N`3V z&C!T@0&e39z0L{x;N7RN3lISoD3~VX9q>K&A$u*)r=DtBsh{!AZJ4&!W?W}Ppht@W(2@{W7LyjM-f$&$3b@_VSXjz|e( zda3rtszj6>(}M_b;Cwl7{D+I-z}W{=`$Cw^kL~W1m0hRf%-9Ct#`Ff;+hFH!{(!#O zEbB*tcW0N9OHtjvPFbtr*ZzCM(|mU8Xr1;{Q_&DJ59rqt_X z`A_)zUti)Zo@a1eCT5yWp=o$e5k+hOJK)`CqYp5_a3~9*;(ilzkr%m2Z+VLLss)LO zaCWrxi(>UDm8|_0$%QR^)O3UPNw1>EBrK0(vVh7JcBDEhmj^Rj7qjEhN);tbr)Yff z-y^C5RqS%#`FaxZY7*@thny~lBYl7V&e`9CKbRQvKnxE2;W_8=rR<5ohjr&ZSeQj`0e60+E?i{Tz{~i)5MDjfW=o~Q)Q8ID< zzT-cb1r9~OAa^bV{Vk~<4xBx)ICt>a?GA7ic&ouhhz+rM&h}sbSMq$|t9f(jzEhoz zI0>%O>_5zi$+VKyxR?cBAZK5bSPFlcBsHkD-(cn6;z5k{@y8@W3 z{r`z>RcF~0Y-X?Ddo?aw3lzz`4f<9K9jfGunBjJnTsdz{Rd;20)H{9u&bnWI?;me1Nw{~2AYfyxn`@7VwlIV1ok9P-I z!FpUF;3BXQ)y_IQ-}~?63Lo5)Tw6S)-wl#5kX(PyI<=vz=Cs&g+e!I~O0NBgAm65g zFKVNXf~itd$dK!C$#uq0!?XC$xB%qf<9!ju{RCx;$CT)YSWhqO>kB1?xfd@}PRTL6 zofmCm7p?q*NFMgq^}|ug@@v+mOGDMGQ$}uNSy+KhE5dcada<~qd zh=H4zhMREsp+7wKw_X4JVP{XG-|yPVc=Fg6Ko#O$%;>_4WN)5hm>So5Fj}3NkG>y7 zanDsrqMhDwdhk6Tt-o#pyG4uGroKhsjowikLl<1MZ$45s;*|lHE)_hp_v-&R-+2FX zJ`P3zxfBuH^DZWs%*QQoA2JzIpY{>~s1` z)iBDV8X?hKXr#0BQaL;_O!Fw(7`-`wjgn{Z``hb}9J!(ab?zK2F9YB~EO`I%1TcBgJ74pD z?;5#hgku_EXC@^zRj|7Gm&{Zr-R$5?w$a~^wc3jJ=BSpy7I~qszs)cEE4Ce$PE-w& zd%pmt0vVxn1xgMmH>eH@KBYkHo}Fw159s%<KUhXiA5D^wJWMeq>$<)2XRSK->*qX&YBmz%TpnvTk<3j9%(x}XwOnC;HCY_~FO zy_T27Mv%U;*?EM5b%e7B=K+uZ2;Ew9{W@xH4h1l_6;J}Z&j0w|2>K>!_Zag0qaXg8 zJr6vG281q(gn$`@@vTsf6f)IheQHCk`xn8rm>Dcfz2`~>TU#4>V{~QI4trLq1a45b z7ZB+qIseR<@Y(kw30Ncb^|6_5a7*x%F6fT=)IA zs%l@(t?xZOLypK1C0WSOW*ksfLODSg7_l5DMt}gLXTRigQ2Gja%u`8syN`M(k)oUwuzIc9`!vw!tpB>yzv}F^ z_pc1}@LM`=*?r`(NV=Tf$3=c5uBfR$X#{2M4h9H~MDOUq9pcuU9g{Pc6DL;^ExT_A~kq zBb<0_&*HOzo$_w9wUeH$Dq6v^s>;#0AA<{foq+ei4P!E|`sn7f~r-$~Xoxc4bTa3<3 zy|wGj;so^+)h7&`N$S7rj8>AFResV(T9GP~0=Y**eCg3Zf zzLcL{`|Z(>%6@i7X?|qf;>X^ELzkJ;rVi7HnU&TpXs0#M(!-+K z;g~XD!Oy#>KtxeGSwL1cHeh-N^#N_c zdWF-l@$han-2eRSR+e#!s&hht*CI!2GIiK!*`!xRwwfWX+@#2bVxY7{#t28e|GPtG z&s>3`N8xYtLGd9s{zKsReq(0>Re6O4u;7iaELe;tShv+`xRlMx9IjT)2RrlJO%{yq zeu&Se#NKZi&3fA8d#2qRkk95J&a%T>{&V(W*s(@2=@7Y;AlU+>2FXA)b@+zl+s=AF z*(k`m^VdlrI`=+`2uRk_)|C=P(B)mB+Ym-XW1@=Vc_73YrVMDyQp#B{$9L;1TbIqi zZAuTLJ=FAxv8l06tsl8Ti1eKk^+i8(t!w-t)AEG*Gm(40bwE=-i!wp|kNJZ?yMwCo z@^9);=r_c$PDH%&mkUHHzIpvLD>lxWvfRr1dMWq4tAyNy(`;tTN#ot*$hl@JvHykW zv%f2C`Fy=#G=6aQVs8?x3_waS#YzZcB-;i7x=-j61!JDfyB$A*N|zDj;!?oV>0p(P zqm?x2{?xUlVgjcD)rgu1s;QY&ln6v(7=sa{P^3v@W~1bjxPAY9x&GXBIhDd$lQE=- zJ6RSQtOz)77WT+YhE=Rbjh|k=?5d3&GSdfn2e`>U`LokC?0(t+NY4MqJn8`iz68BW zSd{wsP@)3=_HE@Kyfj_Js?O`_ly-Ou?lWS_=cBhH6Z?^HR;!ywQ=I+CH?BE-!0+3K zeqb$_JV^opMu`3hk&U$K)8u#%v)bIzq^&wAl7hut((fHDQq{mo_3z?ih>=t`W8;k#|P!+5%j3eB6Dcv$i;Uk zsIKlw>ii|4W0?&UA=P>S2?z>_dx-6aUj!@KHEzH0{e|2I`J$Ay~e@{sYfj=f#SX%wo;Lur{xk6}OKcG)tTk2f|KbLNMU z+X~kaZfN+JB|sGjuO5EQ^5&oP*ewf>`L)Q)pcj~>8ZfXY%UAAz^14OjC197tCDKu%x70G!l zSsi6QjyoZ`iLo|QTm4vy}?EbdmFxujZ-~g zp=XmtRgEwey=lWs`;m8ksLA=Cum`yD%>c{+`f$b@U+Ymaq~C5(`)#yW^!*ntJ9Fzz zYeH@N(li@J>@#Z0EVTB(EJn`S>4}<3B&%YK)x*idP`WCLWFQXABb{-M?v*6!?-GN> zxII!6*m10&%kE##mxQ&Y;KxFMC~2%BeYw)mWGAf(Byg}IhN8a*@xj`AN;*>{OTf1f zr@l9zPVa3UOy7zjn_KPe#%kz{WudmEFL{fLJVcD4RW^UJ9|@wnj^&8TjCL z#j;~Vv#Z2Q(KaI^pl7Vk}^wk@Sy;Hx=hRjq%M$noorS6;7xyWHeHSNXA>ZuXky+T}c$=bhjY48{X7 zO7t-h%f-Z8V;Xv5LEM^jHhW|lG3JTr3DM6m*(IR2%mRWW=bJUQPrA{clzfbh(={4c zSA>v?rj|%k{ZAm#8POj?Y`STG)vzX8MG&Wm1IZw(RAy&>D}=n4nc)lSdtcD##_IH4 zBM*LHRF1vL7a2v{9u6;O#lZQaI7EuvefN(YPAW1zCA4R>W=fb$x%0hwnbQ9!Dgj*z zE$LOkTOT8YTL{@%$amj6#QPa__@H%mGxPn=NGLw1*0kyai&?d88wCpq1mL>-zFZ6h z06ZG*f{YN^Kupnby8hyMKm=J&`_i?O)(cZWax&|z;F1G?WXBr985(8@5a<7XjI6F1 z5VHaR7OW_tW>-V;9GTuSraDwDT5XHV#7ob|kY&c^61=--ditSv@qK6Y77On4?ptI2 z^!*AxO&%b1RUMI}lL_2MI6yc;cpjKyY02<|9#vbmvgnDbC7;fSv)ib&F~-wH#eq@% zY;ru3fUxS^lXQWwzWJjwG%i32M228`i0QI9K$k1Hm<8^oS0oE6dS~RCea;qW3+CiRHDdGJz2gR*|y~1OZrQ_*&o;)d|D`Br!^2 zmtcX5G6L|Chl8|pQ9FA8XgH>9t@$%srf5r3+YRY2GJ@=4o4(D=PSnuHgl#np zX>~gW*|w^J0ZD>|E=wb8QGd}H|8&1Y?bbj8DhL)xl29g(wdrPpr;NDV;DG={P>-lb zHFim%mD7{MNqXtzBx~~(V2nZnf$`APi>aDyBG!y!)H5xrV=xaWs}tt=luS=>HZZw6 zrFqG6XB_yQ-N1XBar?%93IFCBVqSYi<8Nj!K!C5K*I(1-@wZjKgXiT*ejrWDWj~?H z9c?c0zFft%BNcy1#Sg{QeKpNMP17@Nz2V!cbWzV077>1tv{~o%p<|yb2^Yk0Oybw# zK55JaDL_FZz*_y+WhRi$Pe|-o*XgW40NrSRift50Mb@CyRU1_F%o;s~>crC?wPH^) z31y*t0=dASo5buc>fV4uK=$lw(rvfK;oHi2!HuXPF+~O`!6z@JmZgo zuoz{W%>>_%*x3S!M~2w~ja#wt56HrXvARu&2O-+$)R$$b>z-(byD@9d6}pkK7Uf)+ z6`%{CWUn)VB)zQBdO_kBlHDOcyJXT+h$TtaCH)TFYstQ-_H>Ro8dYg4b*Qf+TB$XS z6Y&UIN2CxHfc;B<+mDDzsNyS90r2ftEnmGE?*949y(^FQ1gc)21v#NNWOI>+FxtV_ zL&5JF6Ss(MUyN*8XcI&VGGMH|eh3b@1xmy1m{zr1{#A)jo>Ic@O|} z<6i;RoZfXf$zHQWKs!zs(*c1Zb;Uq~$xI$CK{6ksbGh2WsU;x)FP{`zR!e1 zJ~xJ2g#RBN5~YB!aVwA^#BC`CjUfh8xU&09q3f0x@6* znHm>bQyN?D;EDw?dRpJMYW!f(_c+sH22I@?)P+dR@VVwREZVJaz0~r}FSdL`JgKa^ z3;&_ffBGL8y~Rj*JPpk!Dlz8S00k^CHWAUu~V1Qx|YA`b*NyFNMc?hBtssVmcf{cO{T0T?Gh0 zI?mNSM*lHgtQTBZ2UwR|4WPF4x798F#^6qb_DrQdqb(;Y*~Hp>ZlbA)rj1SRGmNJV z0UIJlL*|WQT|`5~ix07Fr{1+gvuORe4b+1OZ=d4^9P7@1`z^=T&>YsVKO;;;o6#Uf znixP9t~O`nqC_$EJZNEpYt@%ozOZ%fc8V$#INgY$*@rMxi3dnMLgS{9c4Qy z>8Yv^LF1BVPYzx`jjIU4g-7(B3J=p|m_V}5fl>iUx?6w+h>6(2CmoWV^hdTvpclDb z^#YJ56@es*L|5pEI6qe6Sd2f^z%h1qVtegF+G>o?XPEIK>*2Xh;C0{z$~ORj>o+8& zY5oGZ@ixk9=$^0|PcH$lMXu8T>@O+)r;j30HW{zxylICzn;+r)CZ!vh7$0I!4KWVM z&TK^X#V(vi^Et%30K3aGl<}euD}f=+FLbhAFc(?!t4fAo07r`cq=n9j(zTSI0DxV2 zMl8?*1~h@;X+u9kYll}zbK(jFLB!jvJ%KPm?KITPt<4&wt?-2*3`%zDitm$gJ)!Xi z5m`eaq+6Y#zo{nh8^EhKJ$sDHU8bCFp0XJAv6GCRAGWOyGN*e6S4QNrx~R6KRe?mb zq49|=PC-+|YZnY%EdcBDrPGuQkqpRKk?oeW)d;K$fPf}X;FeBTjX+35y#;(KA#DPJ zf?hqh`Vh3;x0{ z80@xu^X7s#zhoYr5$s0N-_9!FwG?8<H~;FwR7&69_!$Bgs1vuN^Q%1*@nELW(35QCXFU?$II~B1vOG69}+t&X;qIo)Q6F zqEZMzK=G^J5kMuC3!h#Kx*p})$+k(7eg0Yi_28qBmv$kV^)=WHG(MEz5L=xfcI>q} zRoz}>G&M!(Xz9@_M>yM7&;D^JtG4Aof3;#S1Sap+Af8tVp!#b9KvMq19v|a&b}-{H zWlhKQTeq3nZWKoRQSu|pM8{Cc~JJm(l)Bs7AAC5fI z@v%X(YhcO z6-{iY3pmAiN0XH_6oycmkPoTZBCut!7;kq58_kJ7_8Z1W(Ubv*`imgwUQ3Qo_meXm zq7F>9bi9&m$w_4(i9s=l+T=U~(k+rMIWMHw`|}wt%qb4uZEh?M&83M+d&$n>R8uK!LM-SC*-nW1F;0`56i}=>G zcgBpr$DA8l^V%mTf(&3gB3oO8<6|nIDhlMR!fb8=pd1tLw}f_s=3&)GD&M-iHLd>i()|IGV0OQ*}ifE2)i1JDJU5{EvoJLW-n+51n2FT-tQw_W8(f!c50=! zjkqCVwoGP+8r(Ak`!hTrV2XfFXBYUf5B|Sps z`gLu9hBSslmSbz{Q&|Ow@cN4xFO-hntA^>kpb8GtF9lnAnU9_7B&Y_Xz2{Kh*Z%QT zh9{Hg;hGKcZ3BY<*(a5E}?B z#4?-q2jvkO?};7XQfF;2MJY}Hx#){$Y>|C|nB7Nv@3U!sM!o-#x<4Cap*s9gTkn1O zFyf!hxbpiMZ$!^6X}F=`Q(gvk{}s$c_~9SsyeI`Tn{#F?7Mb;{*`N{e*uIm|6(rW$ zyL-eNhQFXkNyxL#AGX^ zd3tmZTEkpj+`Bwzt?LbG>~?H6YEd~hd3--?-TfP~kjLCQ<~!SFvHKi#|1$if_Fcc|YvaIl|cgL*2JE$yHrxe*1RL$&>f2yHq6==ms)i8gVfVZsc|wjA!iV7kM7$X@0=` z2KW4sd6<~DW;#0TaE}MuV~EDa&>##FDs)#NsjgX7S($n6`?AK$JW*BB*liPm4c-we z_DMzPrPjB;wbtHiua(HKcM~%o#8#-M;n>%0)Y4*59lF$Cg2)79X1JF~73y|-&T9{2 z+mN{tE(cf+@Bn2C7Iwh$-F|tskYI#T32a~aD0hf`-(SW8<@vx~R>1aZUiU4VM!Vfl zgh(F%hD2%kCHTgmb5vgNJ61Bl0mYA{wElfIaM?I!)CGg7@?QIJ{-%&l!3H&uca$vm zFjSrxP6S|P3ytk7IDF?4CRZv@Mj@^;#D}2zlO4F)9892RT6_RA*TqX`w{X3Z;x{#e zbFiOZMG!zZcgf(*vkudn9D^hG5IZ^3@j^HggWN4FzR|MGf0BW|$&-#@o0B=~wJ#85 z8h)IR7?SW(-%?Q#dHq?%XlClLjtASir#I{*%Lv>rYde(#>;uX#0l+K)V*Cf^j)V9Z z1R!3z1UZ(2Oh6?F$~b^90?hr^&up2BaDdEyl~@UovUB)&CtkWD2Ip|#`+>)y&fO1) z0&v+_ViIohA<~ghCdB+pzEHDJqPJ1Uo6^>pFeCx<<)Yos|$aaqTE}*Z~ z_3Skdxhj-tCfGg%63uSr6qMphl{gYQRpNa7G>FjuU`O@c1=kzxf0&uM1%G)~CV^YVaVu99gP6 zNyYPXq@5I-Q^1U7=xr7_@t^hYdLl0Wm{~yZrxaW+!2^TmU)#WScxbeaSz(?>8iv@N zOvTpxb!Zub+z`SgaGM#9-Oh2hU02@3Aq?0^{rMU5bge`+h zcEBx&(%MlfZ z3xt-fsc;_YMuuYM1T@$`5a=`Y2Y9ft0AtB^WlnLoptx+>UON{Xivy(X6wam~nV~3B zy!wBJ=g&i)X&$d&XRf1@d`d|}U~B?>P@uBB1LieBa+>n?GjRL_@g&(??bp{n*57L9 zrXuQqXddVlAom%7mwf}cR|oTJV1j~3BXD=;C}gnD8N3t#Ql}QWyDW( zpyuD@Aj$w&fG8blj%)^U31Blgb8jCrfGc9Sd;lu4(&AkSh>`_z2Rpz>l8BRT1}hIe zQNQ4+isiyycA#BuTPMgXLf7bBbG4m!y+T|=QLJJM8aW7OVP1O;bguqtM|1CC#o1BI z$O*x&W8iM!d!zC6ApnI0e#W7!MUke6Cnu5PO*ot-^BG+L^U=o~LUf9xslD~t0oG2& z$O{KQcPKoKmtT+XyE|Aq9pIKwP)uQ(SMuFL`m%6ntY{E#xcJB!?!=Q&Y2@V2He{}f z2uJQ-#Y_3^;<1`DLNrPc)BzqcFnIs~l7sst0K6L5Z-vXT@|hR`V(bb=02ue3EBDeZ z?1Nzc5J;DKeF5w#JsT_C( z0Gm@B-L4zW{{Q#7h}@j0;A!cgs}lK52ZDrr>JgXAryx?zy{)_O`ecck+*KB-@QxLk zTU@>zpQ5$&a3~#@jgkfG0Q1>C3)~a00_NAp4B*wlRTWIt_LM(j1s;}9#=dHU$88B2Z8>Sx%z1?&10^ydy7x3zKv?Wj1XJEzjMR)lkfPb zRHopw8i-Obv5DvZG2OcgT>@|#CE~{*cmM!Qpgci2e;(PHGo&AEGW^FM5`p6wI07*2 zK0gbmo`f?3eEk-hcT;exn5aI>Am;?tzG}&~xlHn5Kk`5Q*q#k`^nxD{8@Yp0n9so^ zFPT7r`=#~!_0c{8fvoKXh2T{%J_ZB!L2zIX$}@o+D6O1aN%bR#eeicO4*YESUBn|7 zKstiUW4OEz()mHc*)P4STX9+zoGJ_~zXq9aqCeY0KK-y` zzT(B!zd;4DsroPRS~5k=^$WJWe$i`S6`7|Ju3-d#VxQ_=azOdX{eZCX zIMUZiN&PWM$7A}>2K$P)Zcq8HwEjURsXE^r&K&hGsL)*$+^s+iuK+5urWFcqy3m6) zXptd5cG$2$0)8PY+3mv9Ezhy9>t2xHn$l!`}ME}tHiYMdtl^+3d${lNYD>DlX?n!^1oBXa5`Yv~!7Szrsf)6&q z+JHFR0d`kVy?V8X=0(_T2ozj;Q?(87H~+ioKl4;2KmH_&omqVM(~AJ>0+fDf`px)(sr1CPknQR1otjfd^w(=(4D+3n-g}I|6rrD{Bdu9N#N2VF0HAVajDH!uD^m}N))-jP2cn0XH@eanDWWZ1s}Z`kYa^hv5? zp7VvPA5j^mF698sgN2{Tm8a%>E51s>ATMUGUI|0=07}0Y09<&b3Ry6mej~zzfyn!3 zB#f+}w*xddp=gAV?-i)j1UOh~Y@keQj=RP&=<0u9-1to88^nhNv$Yo;D_E2ag1cAZ z8P?UEkUOylf^ZB1rbcOE84QNtsszDE`IT{cD8~SR@W6O^W5~pTJCo8akOnyovN>Q& zCNSxqIGuvZl#h(rJM0;Gj07X=*9pUbRMA?HA51UQHdTNX#*~4PDHri4+VO!*ANo(^ z)C?zf177?(Y;_mmTkpU@qYu{&rqtBgZVsFQaNhlH3ui3<@T18A?2Qy+8tq0usr|X}J0cnDBdq!m-Ns zN3f>tT>YEi1!L7-Ox`exw#cq6v1f`6eXQ<`EQ5UT%Dynkz*PmztBrvmOU0`IOa!I! z?}-HN3FFvbBfn7wgm$ESSAxKq6fpVN^7FxXFE4pUabsFa0%R$pSbD>`}YQu7tr`U35Vh*Yx8LDfAkc ze`4j41-L??adQpLa;)#4g8@EMTG#`}Nf4&NkwPL{Xga(20?*ZR;5J8P^F7Bf&u#5% zPNdvbx|s-veaf+mLIp)EPp;oe7k5|8qm{x`D$=q001%*TFVDgK3fL$u4E9B+aqS?N zBPm}A9RPp@ksUDrYylccJ`VVF3>qokjxD}CFDerT=#(MST-&O+edwh6pw($Wvarp7 zbtC$3OR9&i2qYJ@;~;F#c0Z~JKf!R}6>{n^K+ zCRz|hfkVUL-VEU{9027gnNd7&8VnDEBYnJPv*~9U@s}N=t56#k7`II>TCWfiAI)yx zQ3ffJ8#a|-R6j*dD_6K?GSr>5<$N*Qb|Xj2Sexmf)%yyOYmbpaDmj(E6sX`%0yB`L|54=hHtk5CDFl z%7wmQ0F?2-(Qmep1<$!0k8#ib96@g-&D@+)jlU7d8)j-{L-4rBZSPX0U^()+V=!_C zygvYfIVUpBSq_jlZH@Pwb#|e*8TB`AxI=DeW&=3sb7E2v_HPvrJPs23mxOrWY2f~? z@cyf%2LVuMhRkxOrL^@Kd28ko^a9nI5T?4#)XvWwnJyPRhKo1BYJ_ZNUgyD_fJdC0 ztB^O|((=S4*WqzN*Z^1#dF>jo0O;x?u%ZpaQy9GsFIgR%zZVsMYbJ_EQMARzSf7z@{L# zH>_i!aLuQzvQKd4j4jgZCX=m9$A@>;X=b=VA*DFvTg!dsnB-J~-~a&r|92sH@TnF` zBFG)5%yDNtSyY=|QtOy&t+~KcA}mzce}k&{I=1IKOtWjK^nPZU-V#hDFi{t#Q31_7 z|b@gFadXT2DeJcff7B6Y14XrNSYr3n*9vL>z9ohAF;5I<1QzkUiH$Ro!_ki99D&FmZ)s?5GC*j3c zAw9A~UK5R-3n1p9XttauW*DQKvHSw(Y+L#M!`^H>8MfFj?BTFwvhZuYtzk0UHl1u> zIwEyaFmS<$1f!Au@9msQj$|MQR*wAPuo&;G!n0}{-RX|ER&V)3B^9`GF{+tnY2~D& z!7g|77B%{Ri|&jMT_wTO#E9W8conj-bsNLRfSblQ92GeiK^6JJ0_^qc@J_q~(Ku63 ze5X@wbl`q=7h6x>!Sq~5r$s}l>LeoVFr~YA?J*DME@^=1FAM;T;lr02kkw~lc?7rn zOT6?ecl!T6H-&m*5-2A4^sT#25@NG?wR$V=p#xF$kIgaTM=D(FBAGrSRJ;Xl1{j8I z!E1-DH_Qa#n#t*kq-xU!(H)X(N`gM|yw0l>=#PSGvpPL*?vOK7NIN? zxfNM~z!a8*6uy)+kRH=sz_N<(OX<5LsDvF^%eqW5;^b}$_yLSifad}EG6YRK*Pg~; z_&(ahrt>?`Qr!HC2-Ldtcmb0SVVf4MyURtYe(br4uRs+Vv8aL1g?Q=hZT$Sq+g^3% zi9$!lD_-v4qn~c!+jCB}bc$WnAcHnmeY+g1jm5H7{Vxgt+gH91=`Le$vOUzDJnNb3`r$p|NKW}z%77mru46IYH)^_he!N65Tk#4L9o{O-xSVI*@ z5!#$Fx(ILhp~!*)GX01=Y9ONzS>CR3VjJLo!lhV)^Kxcri;Sm<)C9O)_3VoW+oSBAge2xivUBWJQZRnJqErH|2;B z8au>?|I4*@IP&`A$XazDK2YD@LD(Rq!d=haSrJ1-7*{wV5p^P*c%caiL_BS<8~t8Ki=j9eG4R}k#-JL}Rp9a;Fn*$^@1}PU^Sop5+Hz104 z^P$L{o1D?WKSh>jE7)iP=x`oOKh0 zJIgq6bpQ~7mAwX}F?j7#f(X=_sv6w*u#W*OvW02Xi#fo>$Z#G*yY5q4JL#5rN7uDu zAKUzJ$62omx$-V-r2w*&;>+=@#&oWkfj)6HW@ycAZ&+~S8gw7LnfMc7V& z-6mn>dVwizaQ(Oh;1IYK)I@}=)xh_^BJb2p&KKmBzM zoAv-0oWJP4;F$he7T|M?nD-#@i7c_M0|cGDp24*cnC9WxX^(6`3n%=vW0 z1}}k-UCKeQxb=9|REp!)OBlEAl8ot-UAdWQGgUWsxZ;Am~#{ z1Q0zKHDpZQvM$g_JB(M;B};q~ex(J;a_rP@J30KZo9a$mQpceU2LN2XkfHDh0K+%l z%(0SgKr4prP80VnBK+0A+=k~9&<+8{N9^zqpwXSn**9a{%*<$l>z57yOW*gf97{a& zFY9zlpSc3$cksaaEeN{U=^EgK+B1;yV^oiM z=Dhim0pP!JY<3;a{$m6@xSm#+T@jeN72$RC@f9lma7WS-2%T@XY%n|uFWNN@x3IRd zf#F(#bdh6iuzKK|)OR0I$ca95Cl+==498UUPyVGpPJJ-~~eHyGW+1wiaJT zS~-bbIJ8(c^YTWn!swse>`f0cd;n z5nEsuId0foJY*%i0EOI`Mg@uwLDYwDBAfeF>#zmEd!Q;uEy$&L8fw(`3Y1r zf)o*qzeSlp6opHLN_&jE6`ltk)K2aMmrAiT%ZmtsSwp~MVc8v;xbqPy)=Z~POyGYk z7XSzo>6&eB{wwP1ry{D?fA3N5tJiWIy`ACIVf8!x`q?+irjCD_#qpMe-7c=1;eegGQLsdpjA$@49tu#2}&IU$1C!tA_{;&vpZ3Xt;xD!&RI z$AWo62)3JKhzzk^$X*|jHDQPh?e35a8z6$gV2~o<2}+_q*Q7p zc&Jve+80+mA^Nlu5)VAX6Mw_1e+d7;?kl3&1w?pQAy~}PvW-|8dP(C3Cvoif9Q#~m z<_yBJl64d}ZWV+|{gLLu^3muV&-eH@^SjKrv&k2FWplUew)J%5WNzwYR)+ z*S(?w5Jw4jFUs1@fO31qsfMw;y!{Y%qLJ;jYUoUGA=Nygyn02$WaTA0;V@W6^mzwWbiKS|IL4vCXHUg;d9!j6ao0kaCrPg(Q~*G=Zn zrX9-t2GP>H9K&5Y_zO#0Irft)Ou%a{03l+(Jx`&ly-L(rT{S5ukcFIcB@JBf5}El2 z*T2db%$Bnv1u|yD4%gQucAhD zf1G4f0X&a;=ZaP-3HrLzqS`$elVK*j0&{%94lu_rK79l*NKlnIxR!x-f4HYy5l6Lo z{|_lYxhybFJn*Vv@(J!xz8WxD{!1%Ghf(#%-rVHsQ|_z1k0l6SJPfG>bJ(FLhbKU%@Pi< ze^|jb4L&v+fHxX8LM9~Lgs@@&P@;e-vtUA_hnDw zikQGjqcUP}Z6!@vuUIH22IaE5Yk|r4_erJK-pYz^U*H7X>i&JT(5SM0vpf~R$@r8b z!$PaWweilPLV@|z(8N{?bj4#BBHwUv!jyK>;pUnKz!DzX4gm)4)7i8)6vrsTzkIqz z!2=G-I}%Kf%u?mnaC4yrH$)%UR6>naR=g7!fcbecQ{8xE%V6>3<($c!VCz0hjkl%( z7IqCrk&%x4^D;3&Eqxr$FQW&xec;{1Y)f0v%KPgMu)IR9}PzMsNsjca;_fT?T zno7VBFH=}nkJM7Az~Oh;{QR?ocO1hn>l$w-p$`6hm|QKzOr_o))GPaIp^`g5Oe^1V#)b(kHxPE+Z-p6J4mH9$X9&p%x8V@({G5mC&l zzFYF+)W_P|!UkaVPBs|yD|a$30)_!AE68}hu?q!{u^1hg<{q3cO$Bg7K1qdZV&SuB zLM}%M$N8i_5|0Qg+CdVI`rbDrr*WgMM;tQVWl3bEB$$gAIZCrO!}flrIK;>>B*Bg( z2%B-Nm_EBrF%`g($1vwqgck&ahpyA(tYb#ZtrZ9gGZ75gT{D2;G>+fPmzxHY#(pj( zCsH3Nyl6I2y#1(u>hHTm4}{165Mhkrm7ybMnVr1wk$WF5^X>2K!AJRFiP}p&u&~*j zsZz`W7URxnF2hONvI+}u4@*l<>w6eHdfiRHgc!-Bh)f<1KETVXJ;x8S(2pgMpB|ex zIiL>3@m!3ant+KA7PF+h2zF7PnTa~rl$8qE`Z{J}(SVt>|ET~@#{m*v1TT`D9r^Y) zYG;R>i7+P?Wln=ZFG;=5i-(rKEGy2Ayxm6CYUBWC`DRZiffJg5$yN%Z6SK3whZhs# oQ~+nfa4@I5o+e;A`2Rir4PXBOPl@{kL;wH)07*qoM6N<$f(mV!Pyhe` From d9dcba9a39a468a0fe5cfaad99d6a7282ba2702a Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:35:25 +0200 Subject: [PATCH 06/49] remove unused loading spinners, just have one --- apps/files_trashbin/js/trash.js | 4 ++-- core/img/loader.gif | Bin 847 -> 0 bytes core/img/loading-dark.gif | Bin 673 -> 0 bytes 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 core/img/loader.gif delete mode 100644 core/img/loading-dark.gif diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 82119a5951..307ac743a3 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -4,7 +4,7 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history.svg'), function(filename) { var tr=$('tr').filterAttr('data-file', filename); - var spinner = ''; + var spinner = ''; var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); var files = tr.attr('data-file'); undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; @@ -94,7 +94,7 @@ $(document).ready(function() { $('.undelete').click('click',function(event) { event.preventDefault(); - var spinner = ''; + var spinner = ''; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); var dirlisting=getSelectedFiles('dirlisting')[0]; diff --git a/core/img/loader.gif b/core/img/loader.gif deleted file mode 100644 index e192ca895cd00d6b752ec84619b787188f30ee41..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 847 zcmZ?wbhEHb6krfw_`<;O|Nnmm28JI$eppyow6wIav9YPCsa?BvZN-WeVq#)tWo2n; zX-}R!nK5I=v17+PJUqg}!hq_D2a5l>{aizWogD*Qjr0td8G$+#|4BI)r6!i7rYMwW zmSiX-W+hhSNI#p{aB=u^kJ9BqzM)+D@@g7D>_ZH z6>Nk>K2^#dec$hd&5{fSg)a9?JsDb3M<1+M;h^GLd*HyqYe$(ldZsj_W{3#!96X@l zAjsu&py5MupnEfu)0U^(0!(Kp*sL-QO$pql{X%Kq;`Av7E5z0lI$B?E`RzKdsAZ)9=nHHN!5+~JF4SY+VADb}iE(C2i8t1nx?>)BhL zPS>_TA<--6ZN7=uLx=rfr*28JR#UU9l!(BR!@3s} qR&*pBVEQRw*vTQWVY)*bLIMx~ diff --git a/core/img/loading-dark.gif b/core/img/loading-dark.gif deleted file mode 100644 index 5fe86acabc41f3cd97b09eb626e5e9020d5ea28e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 673 zcmZ?wbhEHb6krfw_{0DL|Ns24v9{i`YZs6)XV$Em>gt^AY{h?4&PAz-C8;S2<(VZJ z3W-^X6*>8dDSDZCY55F_KUo;KfLay*bNji51UowhxEkphFf#&$bU;Re3};|A=Gb-T zpTQ~5Y~f@MD-Ovy?0z%SI9)dy9@-@`^WZkUgd>LvFX%=~Sl(U6ZYjaT?v?%A185}J zXhvjnOhD%N^(ZPxxA5%V@T|+F&?zt^!BA2m!N)aPYDJCA*3$cL6D8Oi6s}7=YIBy{ zq^hDN1T}~W*&s8HT}H~XscN4xYMc0GPFQ?v_cG2_MIIJIm-a*%!BuWe z8!pN-Ck4fRwv{)q(2?ptv82e-2j({xWOIx-b`_~>dp%DP`5^Jxr;$gk>~KO%Qpl9n zmYs4LkxrWDPdNxM%e}ObKdc5eCukDP7*=FsfX-1kG{I8*amn*Nx8@m09+!EbsOPk8 z?y2xKiwt?#xJ8N+cW*HLK9#Z2U;}68?)kZzUNCdmkj())=gz+moPsy!gvQQde0Qs` zU}{3g-NZR}O{TRvx*atTnUFAh8zV2vAqRokh7E_Votp?Vh8@EgV9c*hb-FS~^ST@d t$6EjG|h_^oWQ_f4N5p*002a;)W84$ From 0f904b3c9c9542d542ea52bc7683c79e6916fe18 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 12:58:43 +0200 Subject: [PATCH 07/49] use proper style for add icon --- core/img/actions/add.png | Bin 441 -> 195 bytes core/img/actions/add.svg | 68 ++++++++++++++++++++++++++++++++++----- 2 files changed, 60 insertions(+), 8 deletions(-) diff --git a/core/img/actions/add.png b/core/img/actions/add.png index 25d472b2dc41bd4412507d422b579ff36abad887..13e20df6626b5c5b907176c9887386b19545c25d 100644 GIT binary patch delta 108 zcmV-y0F(c@1H%E3I|~ih000fw0YWI7c#%dYRscXrL_t(IjqQ>_3IHGs!>suKFUPaE zL1BU*=GxJ*FafQ?$O1`AGoWa$m)5^gAYc>b0_gq;XB>pVeY0UKMn?p36o*~&(ft!qZt?&(m=SZtSlZVCP9h;+%sp+jDi`EpPwHG6cZ!K z3;q55kuU?&)6+o)h~P7T_uad9axnby<42X2mKL}H@$vC-pFe-rL{lRKH{i^fGa8|x zf1znsR#tGVtgM^{GeAa021U-((=%<)o;{Xu1ArVgAb@KighfO|(l&42Yz8-A+qP}W z$TkwfLPA1mt5&Tth8wVd|9+Xu%1XbYq9PvGX z(7+c9tiHa!!7u|%O-*A!F+)l;vN$?AP6ojY(9zKW8Nfk`0nBD*W`QsRR8&-=fnw~W z7{Fv=V&V@B?GzB!(9nnkd5aVS7@!)EF(au45QPDtx=du=nI6{w0000 - - - - - - - - + + + + + image/svg+xml + + + + + + + + + + From 1f518025a3f5c1078b7b94e93f218b8ed58b556c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 13:20:02 +0200 Subject: [PATCH 08/49] standardize on 32px loading spinner, decrease size in CSS where needed --- core/css/styles.css | 7 +++++++ core/img/loading-dark.gif | Bin 0 -> 3208 bytes core/img/loading.gif | Bin 1849 -> 3208 bytes 3 files changed, 7 insertions(+) create mode 100644 core/img/loading-dark.gif diff --git a/core/css/styles.css b/core/css/styles.css index 7100b8c290..6c9d00114a 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -416,7 +416,13 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin #oc-dialog-filepicker-content .filepicker_element_selected { background-color:lightblue;} .ui-dialog {position:fixed !important;} span.ui-icon {float: left; margin: 3px 7px 30px 0;} + .loading { background: url('../img/loading.gif') no-repeat center; cursor: wait; } +.move2trash { /* decrease spinner size */ + width: 16px; + height: 16px; +} + /* ---- CATEGORIES ---- */ #categoryform .scrollarea { position:absolute; left:10px; top:10px; right:10px; bottom:50px; overflow:auto; border:1px solid #ddd; background:#f8f8f8; } @@ -661,6 +667,7 @@ div.crumb:active { button.loading { background-image: url('../img/loading.gif'); background-position: right 10px center; background-repeat: no-repeat; + background-size: 16px; padding-right: 30px; } diff --git a/core/img/loading-dark.gif b/core/img/loading-dark.gif new file mode 100644 index 0000000000000000000000000000000000000000..13f0f64eab152fa4949476ed83ea24d6fd45a9bc GIT binary patch literal 3208 zcmc(iSx{410){WSH#f_@I(Toe1A#Fh0ikUO3N)(A|MEe#Hb)D$RZE~!V(gY zHH0;wB#;=QEg~+Ut<540VnboOp!Vnh-R**VTlUya*Erz3Ox5r(Ra4b-9?rw5bL!Oh zpa1`>4$t4$#WjHmFoCzg;`sRSql=4+NF?&}^Aie%V`F1FozBY2%EZLP+uM6)X6D0( z51%$JPUatx&D`)U9Ip`WIy*LKu(!*0A~RucLiWCt1fgBhf!!&9 z`EL+~y0B~Q;_1ap0qC*en151&W`5$afG@FZ^F@t1!U$f9@H1;knsr;|Y}ros_Sg2S zQ_V$ngWs`@35M>LBW#XAs~y4L*8F!r&Kj>xD^d)gV)ON`;Z7H0Z@Ad#mPy-p48A;j zMo1%NW%E3vA?h9)RGj4}C^b6-dwI&)l*riDSeZM8Kmk$cWtriJEgmUFMSr2`A_!wMfT{<`HADvzD~3@ z-K_?maNmZ8&zl!{uh(Zp+4R9BmlMMGGU zN#iwgPF4Gj@x;TT+lg}CgOa((5p{RrQ{YAav)DxZaZGpBD`2!!R{qYa{`1=Qtw+DS z;4))8W=>cN|K$R{jl%-|V+Wp-Fix_jUKKWaMiIWQLa{fnBzO3x2NRE(a+(REU74Y> zr;KeR##Clt-^xyZLh0-Mk_oPEbO-G$L`=mr5mclQ+P<5{A{TA%A&&iIMu0O>cbp&+ z5%Sn2Q49*TYzrIQm1UL#C3}!sS(IbJ9UWzLlv=H*Q=cpU>ZJZ~m%j6Shnm%I+H#3@ z*|$5X!eL0kmX(R6+Us9OpH<>5!!B2|%fFFVP(;VBZ7Rdcrac~<0Oo*}(ZPp5J^{L~ zFrK@-c^vK0T``Yc(~w=>N{`1%LyRoXUDBA#2bZl_(gBO^@1m>cC-xX~BMjRbn77-* zqzQ^}Z^L_?%kkMOsT-`%*LUtBzq6DzTgX6KtaLTkfn#t$e6@;Jd@XfQ;2>r-y|C?F~5g~v?vjC=Xr z)3~@v=uyWECKP2v{o--Z`tudu%a?xsw~GZ3*0oRo76B|~TSE;^rR9ch)7PBBzQ$`LR=+pwKQNU={lWVX-MI#6DR!wroj_f@4**T!S8vbC-qZkBW?^sbyhUu6bGN~USS(JL4fv7hG_n-4g$E#^16oqNvGT0G7rl$tDH{U`(%axJOEa`oZ##a~!0YbpkY8y=Qr_{(5Lj#seHo>!h z(?POe1*VZIY-ro>RVagA=pvw=F|*Z55k~242K+r)qvNCl@$G1h0GGLurmrbN2sL zKvi}AeCw)TV~Y#LyV0F;=A?x+S>L+thx-|qKONFDt{rib`Tu-bPua0<4wu z>%r<)^JBXD_;_Y4kS2W9?epJLE`S&-)&jC8$|k&eHg>$~jYlVDIx zR0Ys>YzpK-OEuxEKZ2hpqAvi;s$KF#W%5czez}qrRl+BLpsQK2n_5@M&g*1Rh&qtC zNDjf?UsUP%Q{8gi&-9xdBi{;2Ifm5;eYoV8oHpGGuZHcz}~edimhw zL+lCGHzNB9eg63Srz6>>lkl1`Wynm+@+c#8EqUzeoub3`7E4y)>;IDm5;rob#LIpm z`yeNe&VUfDwlp&qhr3a@mq7p%^8^|#Li8Cjfk1FLZj~odtHVhMqJtMaFa{Pz+T28p z@4y)KemQ(|Y7QrkxpKgpKVr{(9`TP1Kw7~BONy7aI! zKpruPp^;a4LV8Uf3~Rt?U~9IO%`Mn?`g?y@8R^zZV0Kdqhj@#G&xdd1Km7LTU0nDB z;}z|fxc7tJU#bRxqIPF8ed>hIl0kU#Kbe4xek(TmR0M`>^7@rTeXk<%b{}4>Oc-d~ z%Z$K?NG``e*>t~vzgoJJUn|GNE|iko1bMwn^8sZ&y{WlQBQ1)oag*5-Vfdh1P$7d# z>h9)bit~XBeWWrIZenlpscw=pKmjiUiz>u-_Y{MmbBKq11o<8q?dL0>b=`;s4Y8=R zyzAdR<;*6(1rF&L_ug!w0Z2wORfdAyW3=Bp?F)R|`^x>571Xz3(@#OXoXR zQ+t%C@QA;mc+AKKF{T;@-t{}ZRmDS{DTMLQ_)&B%R{XrZM{eh=7M|8I@(Hl0F7e(F zjg*;5O0#!nMmfR7{_gRmrWpt^cr}-j8?02yTq8-ax})`|YlqIU?I;~mb+z^=8{H!t zIQCQ!6!$yR8RSdDP5HK$G3#Msxk*sUsy^)EC8GGiD|1^4wzTo5dH?_Pad4o{B=0*%5VF%k0^Aq>0iVV{0kKJ} A6951J literal 0 HcmV?d00001 diff --git a/core/img/loading.gif b/core/img/loading.gif index 5b33f7e54f4e55b6b8774d86d96895db9af044b4..f8f3dff6fb955ebc02453352e59c845461723292 100644 GIT binary patch literal 3208 zcmc(ic~Dc=9>*`aH#f_@`t;sl1A!Wph)@ebAZ1k{K!AWO0)i|`j0&QnECN9wEFl3| zL)c7E5=acuiiitnwa8LHivx8*?NfoaD!A9N&-Qhm5A3{|H}m-8&Ageu^XHi}=gjB( z`+mPOhv)C>?2^C)n7~^A`0(L_gM-8P__#`?8WWcJzsWFR^U)MU7j-2%d`YGiylNwVS4G*iLqK zBYQRbEkw0fzh#>cmbh6CvbjboTY|rh#qWOH)t(!crWip*77i}qP8VaxovrnYq%GU7 zzC3$INF!xt@jRj->Mj~ol<6lZF+T`8CH#oH*Is zW!}g>e=eO>~e(~^Lf#6w!I$rJs$;! zs?tgx1GBM${zO}s=N@Uh-sKV#cC0+J;6GOgwwl z_z05>ordh`zpn}_>XhSt7}e3pKJ@JOhazDU7C{6Zq(S*BceAC`O4^=s-mV;W9$4yL z;7%!y(Zom-YqGRzUOPn1Zr8LQ?~t~hua7y(Zn((!ig&h#q1T0!h*a26;>Z>CKx49~ z4@)v_7$Ij@wv1m(JS4iEDCa#Wo{k*UbQH`0FM6KECgM+GIx1fQLv6CMcdP0?t7+MM z^otA5lP1F!goW^5&f#0z&*49@=Q#=EB&+MxVMAvW;cLqky90}J`fs{3@t85E$spR5 zNh*8H#9CrPWd?RHYx5_RyxuDr_0bP)qn(9_`!Q_<6)Aw?chXqo!uU?&@Q>yMI0JRV z2_g|8mt7pipioOUvB4dg=GjoPJ4wZ&91Cu3Ev=>0=tOOX9Ql_g4TstdZRcAxtRAx? zmuQ!LJCe%n`xIc#(v?2;T%&#Bfl6A@NZ!P4Ai!kJ zvcInJOsFFpOq(Mz;~kCsSs@P|k{4$nq01Z`2s!KmILSU-!Xxg=G|SFqfijj=n5r2^ zThs`VQYk6-P#aL)@#Yg~tM<6V(eu1|R*z!;#mj6RwF&PE2uqPT;lm|t{{h|J>|`0# zpEZh;!)04@hgVktl8N}~>1=*;W!gFHxoT!z(pEjI^7hMpzj@rlrte=naMy9i=;uLw zZ40~qASvjD`(*T_ zTiM;yxVTa1Uds$76sAZ0?0&%Nv!z~(7asrH`2q-QpDTbB0W4;7eKk$3^9kKzs6K^# zhrJ3E%FF)tdGskA^<83Nee%;#^&xRF<}{UoT|phA-}}>wjEqmT5TK2V1e+0Qg*c-| z>ZGK;yqa403*{s$Tfq2aT|A4BVwZZ*e2l;XJ%S)s#4aZ=ms6u(IsRtpgDDg4}Q7;JYIp>{*SJ6l)3e&(F@lnvuT+0y3 z1ez20aD51H4Mh~nU`GI%80+=9`4;*~u8e$UN$-AqZK;tEAOwu9w8kWV*&n&Iuh(+H zCV2L5I!NZMz%*8e^=;W$Y7=5(bYjZwwq;0;jbdYA?~7QUvFe{K$ocjW!D}CQQ<}D> za{PZ0P}OZe-5T&~IO0t4YH*{RIl01$Y*20a{(kypxxh@!U&*!N%Sv&uyn>jSyIxkI z0Bhv@I4>Da1VmweJGn3OJxH76pm(0RSV+llU$1tLff zPSkgX76@0PcL2(Dq?5lHyMtoa5V$PJYZ8aAgEIfKGZ=JV7Ub~;BVBJ}q~Y(UyDvL? zCm0nG)d93^8v=RILQVMU&*0~Y=ySlbD(75Lsk}mwSEgh|74r!o=we>vs?is)bK6)H zq8=p9lS8l;IDm5?3;* z*wbz<`ye-$&VUe|t|TKChdWTXi$MSra|K!*LiFx4g+Q=BZn+0hr^iVMqKD@^Fboz% zTHi!W?!XxJei?joY#JvHyKupqKVZ+iAM>9g)xbOK#aDctM3YfLxquDXn6cT_n?41v zr7zrxe@YPMj6g)t>Y7rK6SbxRtyNT1HI^OYN?a-6ybuUN{3rx$Fw6@<>Ox2t7(R14 zv>RX!Kpr%Wp^=w+Kn86$3~Rv&U~|?g>szqN#CQHKGSaP+z|@8mF7Xx#pABEnfB4PJ zU0nD*;}z}axc67RzEJl9g)JO1ee8tyf`S#y|JlQD=mzyc9q!?VfcV+ zPyvHV>geERi1UC8-K0`epTw@@QynA@KmjiU^D1oZ=qv(3PKdi*1o<8q?dL0>a#@cB z^|7c^yzAf2aHo>r0tfYsdvDg+#{I^jwZFEIS}*>D5Gng_5)gs@(SnqIx+0)=_xp`& z)A*b!YNrwv9`;`%9yYc{OsGo&@A{qItmdH{3gOx({3yB(D|+72DYxZlgs1h4JOV7L zO}y7fBV}ZeQtdd*C?~kc-)(D&Svo=tUg<;0305j)E|DZy)2ce^(yDiCK1zqw?W#^? zgIi=h*NzH;;vNp2LB7=Am}hetv+5_7nFggS@5U}(B8vCj7!oXx>H}S|ytvOIZASMR z{{)%vw@wC+r}BX}T^l#p0<+3-;jcj6jRRx4AD80=W|+5z literal 1849 zcma*odr(tX9tZI2z31lM+(&YVk%mZ}5P~KlG2s=WSbGzm0!x7^P##Mnh7t-jP!X0Q zk_SQ}Po-L1tlDK;6l?(>v)e5ZBQx4|Y-Q?nr@Px3?9h(3ZWr3^tj=`TP57gKr87N$ zp2wWee1GRRCwo_xahnw)5cxNPJbCg2L6DV|6`#+yw6v6!mDS$f9-JvFD^n;GQ&UrZ zzh5jCkByB101O60U0q#p_1BM>Cv-vP?&s4@g_((4_1L=L$(a91)0=J91Gas#R{McE znYG^9*0A5YZ>#;~+Wkn(W5B0^yELIYLP!K}mB~<)AM@1&nqekynuaEGqPrzoH|KodRXJy)%+w_fu3nE5>@Bd_b zqC$EQ;{c`T&?EsNO|igL9gC7Ygxv?aQUEXMq?~>wg{EyW;VcJ37CUF#HjrT=KQO_* zS>M9yydXk18D(+QDJ1>r);Lav_uYKp$T?4vr{Q$lTo&pKv^?(>L-)G2*lwH!Ah7k? z7oH<8h-(KTKt5V6$8gF)C7Io&P5=SjTh)=zV=E2EUhQZP##L8S{d%UK>>+y82>+FV+#^BzW7u3F)Bb>=lYQ%%j`F>ASe zo*cw@V#u6T`A2He;70mR(V&iV&-7{qP~=SRf&jm9-T{*ZeZ}$rd0#6c&fLG^xJcf5 z+p<`wJYgW+_s*V{uI$nMB;%8`S_3>PfGOj3Rq}@Cx^+j?rk92fANSFDBYnOqQ>Vdj z)(|$AhP4t&Lb=Gvo2#3Gl%9<=Gv`Mz?Po@P4iLF!x}GUWJICDlFk-hS^Whyh7x~VH z@0vD1>HYD4&e+~yzS*-sFR{9`{QEEZO1zg7>R&7cHts-6j!xHVdA8eI+ZlVzd%`es zJT@$#GX(gvCJ1oJN%yLBK}{V=V;seo;!w|Yte!W1%5qLNFWqvZW>h&IiH+oPT=b@E zPhGzv5=(Un*X>v`>%8h_nj^NdYcE6NHS_ifkCV$*D)Tqrbu`s;<=t<4 zAHNqNV?6(g<1PY-w@#I-WYFViz?9TrkMr)u0g`O`u|>T;k|2sV*YF^punvT;$SuTy{j3Gv)yqD!R_CF>yR)MzmmYS5v+~R zXAdD%ng9?df;wd8GxR#%3O+gz};Vo;)sK%Bj-q>Oq%R7JU-KD?vYu>#2UjaDo z&8$>5xW~?KPD_#XFToU1hIb*VOMidUr6iYiO0N|i-7s`T8!cFT`rN!^1Pt78J93i6 z5HI1wIM$94m{3SLDvISDe6$ZG1;eq_D9RTaaC>=cO{@Bs>$IlPCPJJ$h$)-3vzNUQ6OsN#_zWxey!_9%hxwH2_dEJi=yY|1c7nDm2_Lm!Cof8-R_+9UkS zcBE(o47yE)oMR(Q=dp1a2wTX5KvvGyLqlWTa7V&!A*|w|)ax~1_~aJ0=_Lilg*0iQk7#ZD EAHN$8j{pDw From 2a5776354251ddfeccc854d2d0af157575afa28d Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 17 Jun 2013 13:30:57 +0200 Subject: [PATCH 09/49] use history icon in Deleted Files template as well --- apps/files_trashbin/js/trash.js | 2 +- apps/files_trashbin/templates/index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 307ac743a3..87dfea491e 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -2,7 +2,7 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { - FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history.svg'), function(filename) { + FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { var tr=$('tr').filterAttr('data-file', filename); var spinner = ''; var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index cb5edaa2c9..66ec36df86 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -18,7 +18,7 @@ <?php p($l->t( 'Restore' )); ?>" /> + src="" /> t('Restore'))?> From 7fd45e2875f3f62f4bff3b107076578f15665366 Mon Sep 17 00:00:00 2001 From: kondou Date: Fri, 21 Jun 2013 04:24:40 +0200 Subject: [PATCH 10/49] Optimize pictures with optipng and scour --- core/img/actions/add.png | Bin 195 -> 184 bytes core/img/actions/add.svg | 64 ++---------------------- core/img/actions/delete.png | Bin 334 -> 262 bytes core/img/actions/delete.svg | 66 ++----------------------- core/img/actions/mail.svg | 96 +----------------------------------- 5 files changed, 9 insertions(+), 217 deletions(-) diff --git a/core/img/actions/add.png b/core/img/actions/add.png index 13e20df6626b5c5b907176c9887386b19545c25d..1aac02b84544ac0e8436d7c8e3b14176cd35fb88 100644 GIT binary patch delta 110 zcmX@ixPx(mgajiq0|SGqZLSiKVlH;_4B_D5xc$)o!9+t_Z?*uR5ZC|z{{y8$4_&SU zQj8@*e!&b5&u*jvIpUr!jv*Y;$tej5DfhaYUcDCN@a<}3WDqRn?ws&BdNxoAgQu&X J%Q~loCII_8B7Xn? delta 121 zcmdnNc$jg5gd_(W0|SHn=l_X7ilx}eGlT;OYB*9lCK}j=I(WJ`hFJ8zo#e>Hpulr@ z&5!^3$2aeAOl(qkcI)Cs1ID$7PB3|T8!yOMH~rfFK!pV1XG|~tai+_(9IRKF9kS>& Z%Ml$3Vc}J4dVq#Ac)I$ztaD0e0ssI?Ed2lg diff --git a/core/img/actions/add.svg b/core/img/actions/add.svg index 6db768d9a4..250746e166 100644 --- a/core/img/actions/add.svg +++ b/core/img/actions/add.svg @@ -1,62 +1,6 @@ - - - - - image/svg+xml - - - - - - - - - - + + + + diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png index 6362903937c001f3bd5ebac47fe8ed48195c66a9..fe826a14dd2f14c3e50e57bdbd1d0fc583aea929 100644 GIT binary patch delta 189 zcmX@d)W$SHLV|^vfq~)e-A6${in-XyGlYYK*WG`LR|m<|9_Ez;VJ{e z6$}KF;`K2(0MyA*666=mz-?Q$;qKGF%p20S0ma-rT^vI=qLULG7!tROI18K=xp?v7 zDu$F5S%~(8kOhecVUkg@=Q|gP?+=1#b(O1*O6c=(aL3 Yy!2Lk&1A~I8fYYgr>mdKI;Vst0Pl`KW&i*H delta 261 zcmV+g0s8)i0?q=E7#Ro#0000V^Z#K0000DYLP=Bz2nYy#2xN$nFg<_ENklY9d7)C*(rw46x?ldoEYoV%q=6IV6hxQ4qSQ(Q_6jU zY(aPi{~BW`RR#&r%rG|wiF?xBB?eMza0be;Wd9X*NAR`kGcC~@w_00eyvnF>00000 LNkvXXu0mjfPWf)3 diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index 08ea381f37..8024d402a8 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,65 +1,5 @@ - - - - - image/svg+xml - - - - - - - - - + + + diff --git a/core/img/actions/mail.svg b/core/img/actions/mail.svg index 6e8a4bd7f6..c01f2c113e 100644 --- a/core/img/actions/mail.svg +++ b/core/img/actions/mail.svg @@ -1,96 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - + + From a20f7f1d6769881c06ccd9d49d14a1a524699353 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Wed, 3 Jul 2013 22:06:09 +0300 Subject: [PATCH 11/49] Do not add groups if user has no groups --- settings/js/users.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/settings/js/users.js b/settings/js/users.js index 7ed6c50d58..9fe593214f 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -449,8 +449,10 @@ $(document).ready(function () { OC.dialogs.alert(result.data.message, t('settings', 'Error creating user')); } else { - var addedGroups = result.data.groups.split(', '); - UserList.availableGroups = $.unique($.merge(UserList.availableGroups, addedGroups)); + if (result.data.groups) { + var addedGroups = result.data.groups.split(', '); + UserList.availableGroups = $.unique($.merge(UserList.availableGroups, addedGroups)); + } if($('tr[data-uid="' + username + '"]').length === 0) { UserList.add(username, username, result.data.groups, null, 'default', true); } From 8d59893e9072f05e41a15e974f8c93115f16e46a Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 4 Jul 2013 10:32:26 +0200 Subject: [PATCH 12/49] fix position of 'user shared the folder foldername with you' label --- apps/files_sharing/css/public.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 71133145c8..b6511cb57c 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -23,13 +23,17 @@ body { #public_upload, #download { font-weight:700; - margin: 0 0.4em 0 2em; + margin: 0 0.4em 0 0; padding: 0 5px; height: 27px; float: left; } +.header-right #details { + margin-right: 2em; +} + #public_upload { margin-left: 0.3em; } From b9be693305b9723ce4a37bd527da22cf68c78b77 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 5 Jul 2013 01:34:19 +0200 Subject: [PATCH 13/49] change delete from entry forbidden sign to proper icon --- core/img/actions/delete.png | Bin 262 -> 295 bytes core/img/actions/delete.svg | 13 ++++++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png index fe826a14dd2f14c3e50e57bdbd1d0fc583aea929..99f549faf9b70be5d0917d601485170bfae526d8 100644 GIT binary patch delta 194 zcmZo;TFx{fw_Yp2C&cyt|Nj>m7%nj|TxDRm%)oF32?0frxes?9Gh<+2;4KOA3ufTf zwaqNsaQEq}kAMI933)^SCBi&i978ywlM@^mF7|A55I7rC{rz1jv%=wDSMKi4HZwLb zxMp#7@5-W>hQ_bcnx3gxFWbtfpxAcX!!XnDto0d9L%B3na4M c3DRI-V9V5c{&TTfBG3v3Pgg&ebxsLQ0O*!UivR!s delta 161 zcmZ3^)W$R+w_Yy5C&cyt|Nj>m7_KrfT){v%f6KjBIQ?Is$FX y%+bev6kd2Z7(56nI9l+wfLTx~?0{}76T?eywbx9h{HuXRGI+ZBxvX diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index 8024d402a8..568185c5c7 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,5 +1,12 @@ - - - + + + + image/svg+xml + + + + + + From 955646c4618110cd80c51f283b74848c9a013c41 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 5 Jul 2013 02:21:23 +0200 Subject: [PATCH 14/49] [tx-robot] updated from transifex --- apps/files/l10n/bg_BG.php | 3 +- apps/files/l10n/ca.php | 2 + apps/files/l10n/cs_CZ.php | 2 + apps/files/l10n/da.php | 2 + apps/files/l10n/de.php | 2 + apps/files/l10n/de_DE.php | 4 + apps/files/l10n/el.php | 2 + apps/files/l10n/eo.php | 2 + apps/files/l10n/es.php | 5 + apps/files/l10n/es_AR.php | 2 + apps/files/l10n/et_EE.php | 2 + apps/files/l10n/eu.php | 2 + apps/files/l10n/fa.php | 2 + apps/files/l10n/fi_FI.php | 2 + apps/files/l10n/fr.php | 2 + apps/files/l10n/gl.php | 2 + apps/files/l10n/he.php | 4 +- apps/files/l10n/hr.php | 4 +- apps/files/l10n/hu_HU.php | 2 + apps/files/l10n/id.php | 2 + apps/files/l10n/it.php | 4 + apps/files/l10n/ja_JP.php | 2 + apps/files/l10n/ko.php | 2 + apps/files/l10n/lb.php | 4 +- apps/files/l10n/lt_LT.php | 2 + apps/files/l10n/lv.php | 2 + apps/files/l10n/mk.php | 4 +- apps/files/l10n/ms_MY.php | 4 +- apps/files/l10n/nb_NO.php | 2 + apps/files/l10n/nl.php | 2 + apps/files/l10n/oc.php | 4 +- apps/files/l10n/pl.php | 5 + apps/files/l10n/pt_BR.php | 4 + apps/files/l10n/pt_PT.php | 2 + apps/files/l10n/ro.php | 2 + apps/files/l10n/ru.php | 2 + apps/files/l10n/si_LK.php | 4 +- apps/files/l10n/sk_SK.php | 2 + apps/files/l10n/sl.php | 2 + apps/files/l10n/sv.php | 4 + apps/files/l10n/th_TH.php | 2 + apps/files/l10n/tr.php | 2 + apps/files/l10n/uk.php | 2 + apps/files/l10n/vi.php | 2 + apps/files/l10n/zh_CN.GB2312.php | 4 +- apps/files/l10n/zh_CN.php | 2 + apps/files_encryption/l10n/ca.php | 2 - apps/files_encryption/l10n/de_DE.php | 2 - apps/files_encryption/l10n/eo.php | 1 - apps/files_encryption/l10n/es.php | 3 +- apps/files_encryption/l10n/es_AR.php | 2 - apps/files_encryption/l10n/eu.php | 1 - apps/files_encryption/l10n/fi_FI.php | 1 - apps/files_encryption/l10n/fr.php | 2 - apps/files_encryption/l10n/gl.php | 2 - apps/files_encryption/l10n/it.php | 2 - apps/files_encryption/l10n/ja_JP.php | 2 - apps/files_encryption/l10n/nl.php | 2 - apps/files_encryption/l10n/pl.php | 2 - apps/files_encryption/l10n/pt_BR.php | 2 - apps/files_encryption/l10n/ru.php | 2 - apps/files_encryption/l10n/sl.php | 2 - apps/files_encryption/l10n/sv.php | 2 - apps/files_encryption/l10n/zh_CN.php | 2 - core/l10n/lb.php | 133 ++++++++++++----- l10n/af_ZA/core.po | 8 +- l10n/af_ZA/files_encryption.po | 11 +- l10n/af_ZA/files_sharing.po | 28 ++-- l10n/af_ZA/lib.po | 8 +- l10n/ar/core.po | 8 +- l10n/ar/files.po | 4 +- l10n/ar/files_encryption.po | 11 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 22 +-- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 8 +- l10n/ar/settings.po | 108 +++++++------- l10n/ar/user_ldap.po | 4 +- l10n/be/files_encryption.po | 11 +- l10n/be/files_sharing.po | 28 ++-- l10n/be/lib.po | 20 ++- l10n/bg_BG/core.po | 8 +- l10n/bg_BG/files.po | 6 +- l10n/bg_BG/files_encryption.po | 11 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 22 +-- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 8 +- l10n/bg_BG/settings.po | 108 +++++++------- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 8 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_encryption.po | 11 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 22 +-- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 8 +- l10n/bn_BD/settings.po | 108 +++++++------- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 8 +- l10n/bs/files.po | 4 +- l10n/bs/files_encryption.po | 11 +- l10n/bs/files_sharing.po | 28 ++-- l10n/bs/files_trashbin.po | 4 +- l10n/bs/lib.po | 20 ++- l10n/ca/core.po | 8 +- l10n/ca/files.po | 8 +- l10n/ca/files_encryption.po | 15 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 22 +-- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 8 +- l10n/ca/settings.po | 108 +++++++------- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 8 +- l10n/cs_CZ/files.po | 8 +- l10n/cs_CZ/files_encryption.po | 11 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 22 +-- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 8 +- l10n/cs_CZ/settings.po | 108 +++++++------- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 8 +- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_encryption.po | 11 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 22 +-- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 8 +- l10n/cy_GB/settings.po | 108 +++++++------- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 8 +- l10n/da/files.po | 8 +- l10n/da/files_encryption.po | 11 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 22 +-- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 8 +- l10n/da/settings.po | 108 +++++++------- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 8 +- l10n/de/files.po | 8 +- l10n/de/files_encryption.po | 11 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 22 +-- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 8 +- l10n/de/settings.po | 108 +++++++------- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 8 +- l10n/de_DE/files.po | 13 +- l10n/de_DE/files_encryption.po | 15 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 22 +-- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 8 +- l10n/de_DE/settings.po | 108 +++++++------- l10n/de_DE/user_ldap.po | 4 +- l10n/de_DE/user_webdavauth.po | 6 +- l10n/el/core.po | 8 +- l10n/el/files.po | 8 +- l10n/el/files_encryption.po | 11 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 22 +-- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 8 +- l10n/el/settings.po | 108 +++++++------- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_encryption.po | 11 +- l10n/en@pirate/files_sharing.po | 22 +-- l10n/en@pirate/lib.po | 20 ++- l10n/eo/core.po | 8 +- l10n/eo/files.po | 8 +- l10n/eo/files_encryption.po | 13 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 22 +-- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 8 +- l10n/eo/settings.po | 108 +++++++------- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 8 +- l10n/es/files.po | 17 ++- l10n/es/files_encryption.po | 18 ++- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 22 +-- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 8 +- l10n/es/settings.po | 108 +++++++------- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 8 +- l10n/es_AR/files.po | 8 +- l10n/es_AR/files_encryption.po | 15 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 22 +-- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 8 +- l10n/es_AR/settings.po | 108 +++++++------- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 8 +- l10n/et_EE/files.po | 8 +- l10n/et_EE/files_encryption.po | 11 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 22 +-- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 8 +- l10n/et_EE/settings.po | 108 +++++++------- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 8 +- l10n/eu/files.po | 8 +- l10n/eu/files_encryption.po | 15 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 22 +-- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 8 +- l10n/eu/settings.po | 108 +++++++------- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 8 +- l10n/fa/files.po | 8 +- l10n/fa/files_encryption.po | 11 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 22 +-- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 8 +- l10n/fa/settings.po | 108 +++++++------- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 8 +- l10n/fi_FI/files.po | 8 +- l10n/fi_FI/files_encryption.po | 15 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 22 +-- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 8 +- l10n/fi_FI/settings.po | 108 +++++++------- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 8 +- l10n/fr/files.po | 8 +- l10n/fr/files_encryption.po | 17 ++- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 22 +-- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 8 +- l10n/fr/settings.po | 108 +++++++------- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 8 +- l10n/gl/files.po | 8 +- l10n/gl/files_encryption.po | 17 ++- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 22 +-- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 8 +- l10n/gl/settings.po | 108 +++++++------- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 8 +- l10n/he/files.po | 8 +- l10n/he/files_encryption.po | 11 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 22 +-- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 8 +- l10n/he/settings.po | 108 +++++++------- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 8 +- l10n/hi/files.po | 4 +- l10n/hi/files_encryption.po | 11 +- l10n/hi/files_sharing.po | 28 ++-- l10n/hi/lib.po | 8 +- l10n/hr/core.po | 8 +- l10n/hr/files.po | 8 +- l10n/hr/files_encryption.po | 11 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 22 +-- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 8 +- l10n/hr/settings.po | 108 +++++++------- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 8 +- l10n/hu_HU/files.po | 8 +- l10n/hu_HU/files_encryption.po | 11 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 22 +-- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 8 +- l10n/hu_HU/settings.po | 108 +++++++------- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_encryption.po | 11 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 22 +-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/lib.po | 20 ++- l10n/hy/settings.po | 108 +++++++------- l10n/ia/core.po | 8 +- l10n/ia/files.po | 4 +- l10n/ia/files_encryption.po | 11 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 22 +-- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 8 +- l10n/ia/settings.po | 108 +++++++------- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 8 +- l10n/id/files.po | 8 +- l10n/id/files_encryption.po | 11 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 22 +-- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 8 +- l10n/id/settings.po | 108 +++++++------- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 8 +- l10n/is/files.po | 4 +- l10n/is/files_encryption.po | 11 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 22 +-- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 8 +- l10n/is/settings.po | 108 +++++++------- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 8 +- l10n/it/files.po | 14 +- l10n/it/files_encryption.po | 17 ++- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 24 +-- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 8 +- l10n/it/settings.po | 108 +++++++------- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 8 +- l10n/ja_JP/files.po | 8 +- l10n/ja_JP/files_encryption.po | 17 ++- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 22 +-- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 8 +- l10n/ja_JP/settings.po | 108 +++++++------- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_encryption.po | 11 +- l10n/ka/files_sharing.po | 22 +-- l10n/ka/lib.po | 20 ++- l10n/ka_GE/core.po | 8 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_encryption.po | 11 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 22 +-- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 8 +- l10n/ka_GE/settings.po | 108 +++++++------- l10n/ka_GE/user_ldap.po | 4 +- l10n/kn/files_encryption.po | 11 +- l10n/kn/files_sharing.po | 28 ++-- l10n/kn/lib.po | 20 ++- l10n/ko/core.po | 8 +- l10n/ko/files.po | 8 +- l10n/ko/files_encryption.po | 11 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 22 +-- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 8 +- l10n/ko/settings.po | 108 +++++++------- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 8 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_encryption.po | 11 +- l10n/ku_IQ/files_sharing.po | 22 +-- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/lib.po | 8 +- l10n/ku_IQ/settings.po | 108 +++++++------- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 205 +++++++++++++------------- l10n/lb/files.po | 8 +- l10n/lb/files_encryption.po | 11 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 22 +-- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 19 ++- l10n/lb/settings.po | 108 +++++++------- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 8 +- l10n/lt_LT/files.po | 8 +- l10n/lt_LT/files_encryption.po | 11 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 22 +-- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 8 +- l10n/lt_LT/settings.po | 108 +++++++------- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 8 +- l10n/lv/files.po | 8 +- l10n/lv/files_encryption.po | 11 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 22 +-- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 8 +- l10n/lv/settings.po | 108 +++++++------- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 8 +- l10n/mk/files.po | 8 +- l10n/mk/files_encryption.po | 11 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 22 +-- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 8 +- l10n/mk/settings.po | 108 +++++++------- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 8 +- l10n/ms_MY/files.po | 8 +- l10n/ms_MY/files_encryption.po | 11 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 22 +-- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 8 +- l10n/ms_MY/settings.po | 108 +++++++------- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 8 +- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_encryption.po | 11 +- l10n/my_MM/files_sharing.po | 22 +-- l10n/my_MM/lib.po | 8 +- l10n/nb_NO/core.po | 8 +- l10n/nb_NO/files.po | 8 +- l10n/nb_NO/files_encryption.po | 11 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 22 +-- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 8 +- l10n/nb_NO/settings.po | 108 +++++++------- l10n/nb_NO/user_ldap.po | 4 +- l10n/ne/files_encryption.po | 11 +- l10n/ne/files_sharing.po | 28 ++-- l10n/ne/lib.po | 20 ++- l10n/nl/core.po | 8 +- l10n/nl/files.po | 8 +- l10n/nl/files_encryption.po | 15 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 22 +-- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 8 +- l10n/nl/settings.po | 108 +++++++------- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 8 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_encryption.po | 11 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 22 +-- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 8 +- l10n/nn_NO/settings.po | 108 +++++++------- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 8 +- l10n/oc/files.po | 8 +- l10n/oc/files_encryption.po | 11 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 22 +-- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 8 +- l10n/oc/settings.po | 108 +++++++------- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 8 +- l10n/pl/files.po | 16 +- l10n/pl/files_encryption.po | 15 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 22 +-- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 8 +- l10n/pl/settings.po | 108 +++++++------- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 8 +- l10n/pt_BR/files.po | 15 +- l10n/pt_BR/files_encryption.po | 17 ++- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 22 +-- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 8 +- l10n/pt_BR/settings.po | 108 +++++++------- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 8 +- l10n/pt_PT/files.po | 8 +- l10n/pt_PT/files_encryption.po | 11 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 22 +-- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 8 +- l10n/pt_PT/settings.po | 108 +++++++------- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 8 +- l10n/ro/files.po | 8 +- l10n/ro/files_encryption.po | 11 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 22 +-- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 8 +- l10n/ro/settings.po | 108 +++++++------- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 8 +- l10n/ru/files.po | 8 +- l10n/ru/files_encryption.po | 15 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 22 +-- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 8 +- l10n/ru/settings.po | 108 +++++++------- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 8 +- l10n/si_LK/files.po | 8 +- l10n/si_LK/files_encryption.po | 11 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 22 +-- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 8 +- l10n/si_LK/settings.po | 108 +++++++------- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/files_encryption.po | 11 +- l10n/sk/files_sharing.po | 28 ++-- l10n/sk/lib.po | 20 ++- l10n/sk_SK/core.po | 8 +- l10n/sk_SK/files.po | 8 +- l10n/sk_SK/files_encryption.po | 11 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 22 +-- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 8 +- l10n/sk_SK/settings.po | 108 +++++++------- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 8 +- l10n/sl/files.po | 8 +- l10n/sl/files_encryption.po | 17 ++- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 22 +-- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 8 +- l10n/sl/settings.po | 108 +++++++------- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 8 +- l10n/sq/files.po | 4 +- l10n/sq/files_encryption.po | 11 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 22 +-- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 8 +- l10n/sq/settings.po | 108 +++++++------- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 8 +- l10n/sr/files.po | 4 +- l10n/sr/files_encryption.po | 11 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 22 +-- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 8 +- l10n/sr/settings.po | 108 +++++++------- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 8 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_encryption.po | 11 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 22 +-- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 8 +- l10n/sr@latin/settings.po | 108 +++++++------- l10n/sv/core.po | 8 +- l10n/sv/files.po | 14 +- l10n/sv/files_encryption.po | 17 ++- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 22 +-- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 8 +- l10n/sv/settings.po | 108 +++++++------- l10n/sv/user_ldap.po | 4 +- l10n/sw_KE/files_encryption.po | 11 +- l10n/sw_KE/files_sharing.po | 28 ++-- l10n/sw_KE/lib.po | 20 ++- l10n/ta_LK/core.po | 8 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_encryption.po | 11 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 22 +-- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 8 +- l10n/ta_LK/settings.po | 108 +++++++------- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 8 +- l10n/te/files.po | 4 +- l10n/te/files_encryption.po | 11 +- l10n/te/files_external.po | 4 +- l10n/te/files_sharing.po | 28 ++-- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 8 +- l10n/te/settings.po | 108 +++++++------- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 6 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 9 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 20 ++- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 6 +- l10n/templates/settings.pot | 106 ++++++------- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 8 +- l10n/th_TH/files.po | 8 +- l10n/th_TH/files_encryption.po | 11 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 22 +-- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 8 +- l10n/th_TH/settings.po | 108 +++++++------- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 8 +- l10n/tr/files.po | 8 +- l10n/tr/files_encryption.po | 11 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 22 +-- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 8 +- l10n/tr/settings.po | 108 +++++++------- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 8 +- l10n/ug/files.po | 4 +- l10n/ug/files_encryption.po | 11 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 22 +-- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 8 +- l10n/ug/settings.po | 108 +++++++------- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 8 +- l10n/uk/files.po | 8 +- l10n/uk/files_encryption.po | 11 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 22 +-- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 8 +- l10n/uk/settings.po | 108 +++++++------- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 8 +- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_encryption.po | 11 +- l10n/ur_PK/files_sharing.po | 28 ++-- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 8 +- l10n/ur_PK/settings.po | 108 +++++++------- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 8 +- l10n/vi/files.po | 8 +- l10n/vi/files_encryption.po | 11 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 22 +-- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 8 +- l10n/vi/settings.po | 108 +++++++------- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 8 +- l10n/zh_CN.GB2312/files.po | 8 +- l10n/zh_CN.GB2312/files_encryption.po | 11 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 22 +-- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 8 +- l10n/zh_CN.GB2312/settings.po | 108 +++++++------- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 8 +- l10n/zh_CN/files.po | 8 +- l10n/zh_CN/files_encryption.po | 17 ++- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 22 +-- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 8 +- l10n/zh_CN/settings.po | 108 +++++++------- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 8 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_encryption.po | 11 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 22 +-- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 8 +- l10n/zh_HK/settings.po | 108 +++++++------- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 8 +- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_encryption.po | 11 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 22 +-- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 8 +- l10n/zh_TW/settings.po | 108 +++++++------- l10n/zh_TW/user_ldap.po | 4 +- lib/l10n/lb.php | 6 +- 692 files changed, 6766 insertions(+), 5936 deletions(-) diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index bdc4031008..f4424f9257 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -36,5 +36,6 @@ "Download" => "Изтегляне", "Upload too large" => "Файлът който сте избрали за качване е прекалено голям", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете които се опитвате да качите са по-големи от позволеното за сървъра.", -"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте." +"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте.", +"file" => "файл" ); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 353997f6eb..f72bc14f51 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -72,5 +72,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor", "Files are being scanned, please wait." => "S'estan escanejant els fitxers, espereu", "Current scanning" => "Actualment escanejant", +"file" => "fitxer", +"files" => "fitxers", "Upgrading filesystem cache..." => "Actualitzant la memòria de cau del sistema de fitxers..." ); diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 29c24e2984..c16d32e9c2 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -72,5 +72,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", "Current scanning" => "Aktuální prohledávání", +"file" => "soubor", +"files" => "soubory", "Upgrading filesystem cache..." => "Aktualizuji mezipaměť souborového systému..." ); diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index daa69717aa..c2f200e476 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server.", "Files are being scanned, please wait." => "Filerne bliver indlæst, vent venligst.", "Current scanning" => "Indlæser", +"file" => "fil", +"files" => "filer", "Upgrading filesystem cache..." => "Opgraderer filsystems cachen..." ); diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index bf0173ffc0..98214d6a1b 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", "Current scanning" => "Scanne", +"file" => "Datei", +"files" => "Dateien", "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." ); diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 9527b46634..f9c347b45d 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -73,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", "Current scanning" => "Scanne", +"directory" => "Verzeichnis", +"directories" => "Verzeichnisse", +"file" => "Datei", +"files" => "Dateien", "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." ); diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 6de00f4591..08c52e3b01 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή.", "Files are being scanned, please wait." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.", "Current scanning" => "Τρέχουσα ανίχνευση", +"file" => "αρχείο", +"files" => "αρχεία", "Upgrading filesystem cache..." => "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." ); diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 062cf6f57f..561545ec6a 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", "Files are being scanned, please wait." => "Dosieroj estas skanataj, bonvolu atendi.", "Current scanning" => "Nuna skano", +"file" => "dosiero", +"files" => "dosieroj", "Upgrading filesystem cache..." => "Ĝisdatiĝas dosiersistema kaŝmemoro..." ); diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 8a5375030f..78740d5150 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -49,6 +49,7 @@ "{count} folders" => "{count} carpetas", "1 file" => "1 archivo", "{count} files" => "{count} archivos", +"%s could not be renamed" => "%s no se pudo renombrar", "Upload" => "Subir", "File handling" => "Manejo de archivos", "Maximum upload size" => "Tamaño máximo de subida", @@ -72,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", "Current scanning" => "Escaneo actual", +"directory" => "carpeta", +"directories" => "carpetas", +"file" => "archivo", +"files" => "archivos", "Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos" ); diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 8e7c5a5144..d5ae7ae53d 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor esperá.", "Current scanning" => "Escaneo actual", +"file" => "archivo", +"files" => "archivos", "Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos" ); diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index d4e951544c..6d94a8105e 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", "Files are being scanned, please wait." => "Faile skannitakse, palun oota.", "Current scanning" => "Praegune skannimine", +"file" => "fail", +"files" => "faili", "Upgrading filesystem cache..." => "Failisüsteemi puhvri uuendamine..." ); diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 13cad2c315..c87e20b1ff 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.", "Files are being scanned, please wait." => "Fitxategiak eskaneatzen ari da, itxoin mezedez.", "Current scanning" => "Orain eskaneatzen ari da", +"file" => "fitxategia", +"files" => "fitxategiak", "Upgrading filesystem cache..." => "Fitxategi sistemaren katxea eguneratzen..." ); diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index b859777f80..94ac167837 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", "Files are being scanned, please wait." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید", "Current scanning" => "بازرسی کنونی", +"file" => "پرونده", +"files" => "پرونده ها", "Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..." ); diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index dd3c4a5f04..22e448c01d 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -65,5 +65,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", "Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.", "Current scanning" => "Tämänhetkinen tutkinta", +"file" => "tiedosto", +"files" => "tiedostoa", "Upgrading filesystem cache..." => "Päivitetään tiedostojärjestelmän välimuistia..." ); diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index c2306fd712..646373d4aa 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -73,5 +73,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", "Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.", "Current scanning" => "Analyse en cours", +"file" => "fichier", +"files" => "fichiers", "Upgrading filesystem cache..." => "Mise à niveau du cache du système de fichier" ); diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 8c8fc7f70b..106f6d6ff0 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor", "Files are being scanned, please wait." => "Estanse analizando os ficheiros. Agarde.", "Current scanning" => "Análise actual", +"file" => "ficheiro", +"files" => "ficheiros", "Upgrading filesystem cache..." => "Anovando a caché do sistema de ficheiros..." ); diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index e49693d3fa..52946bc6d0 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -59,5 +59,7 @@ "Upload too large" => "העלאה גדולה מידי", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה.", "Files are being scanned, please wait." => "הקבצים נסרקים, נא להמתין.", -"Current scanning" => "הסריקה הנוכחית" +"Current scanning" => "הסריקה הנוכחית", +"file" => "קובץ", +"files" => "קבצים" ); diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index c003570907..abe8c40bd5 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -42,5 +42,7 @@ "Upload too large" => "Prijenos je preobiman", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju.", "Files are being scanned, please wait." => "Datoteke se skeniraju, molimo pričekajte.", -"Current scanning" => "Trenutno skeniranje" +"Current scanning" => "Trenutno skeniranje", +"file" => "datoteka", +"files" => "datoteke" ); diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index a74a3bf11e..f0e5b1befc 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", "Files are being scanned, please wait." => "A fájllista ellenőrzése zajlik, kis türelmet!", "Current scanning" => "Ellenőrzés alatt", +"file" => "fájl", +"files" => "fájlok", "Upgrading filesystem cache..." => "A fájlrendszer gyorsítótárának frissítése zajlik..." ); diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 410f5c628e..bacdcc8f49 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini.", "Files are being scanned, please wait." => "Berkas sedang dipindai, silakan tunggu.", "Current scanning" => "Yang sedang dipindai", +"file" => "berkas", +"files" => "berkas-berkas", "Upgrading filesystem cache..." => "Meningkatkan tembolok sistem berkas..." ); diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 24ddcd7aed..28b33795ae 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -73,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "I file che stai provando a caricare superano la dimensione massima consentita su questo server.", "Files are being scanned, please wait." => "Scansione dei file in corso, attendi", "Current scanning" => "Scansione corrente", +"directory" => "cartella", +"directories" => "cartelle", +"file" => "file", +"files" => "file", "Upgrading filesystem cache..." => "Aggiornamento della cache del filesystem in corso..." ); diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index c03c3da3f1..d91d509283 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -73,5 +73,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。", "Files are being scanned, please wait." => "ファイルをスキャンしています、しばらくお待ちください。", "Current scanning" => "スキャン中", +"file" => "ファイル", +"files" => "ファイル", "Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." ); diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index d63285dc00..069c209ee5 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다.", "Files are being scanned, please wait." => "파일을 검색하고 있습니다. 기다려 주십시오.", "Current scanning" => "현재 검색", +"file" => "파일", +"files" => "파일", "Upgrading filesystem cache..." => "파일 시스템 캐시 업그레이드 중..." ); diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index f13c3dbb41..9b209a4d5c 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -37,5 +37,7 @@ "Upload too large" => "Upload ze grouss", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass.", "Files are being scanned, please wait." => "Fichieren gi gescannt, war weg.", -"Current scanning" => "Momentane Scan" +"Current scanning" => "Momentane Scan", +"file" => "Datei", +"files" => "Dateien" ); diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 97f11709ba..43fb4657db 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje", "Files are being scanned, please wait." => "Skenuojami failai, prašome palaukti.", "Current scanning" => "Šiuo metu skenuojama", +"file" => "failas", +"files" => "failai", "Upgrading filesystem cache..." => "Atnaujinamas sistemos kešavimas..." ); diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index c7dfb8675f..b0def1e707 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -68,5 +68,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu", "Files are being scanned, please wait." => "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet.", "Current scanning" => "Šobrīd tiek caurskatīts", +"file" => "fails", +"files" => "faili", "Upgrading filesystem cache..." => "Uzlabo datņu sistēmas kešatmiņu..." ); diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index d1b82f1872..2dd75f1433 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -52,5 +52,7 @@ "Upload too large" => "Фајлот кој се вчитува е преголем", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер.", "Files are being scanned, please wait." => "Се скенираат датотеки, ве молам почекајте.", -"Current scanning" => "Моментално скенирам" +"Current scanning" => "Моментално скенирам", +"file" => "датотека", +"files" => "датотеки" ); diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index 332c0ceaab..f96d4d4801 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -36,5 +36,7 @@ "Upload too large" => "Muatnaik terlalu besar", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server", "Files are being scanned, please wait." => "Fail sedang diimbas, harap bersabar.", -"Current scanning" => "Imbasan semasa" +"Current scanning" => "Imbasan semasa", +"file" => "fail", +"files" => "fail" ); diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index ee3f40d7c5..769dfe33ff 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.", "Files are being scanned, please wait." => "Skanner etter filer, vennligst vent.", "Current scanning" => "Pågående skanning", +"file" => "fil", +"files" => "filer", "Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..." ); diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index cf5fc68bd5..914d5087af 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -72,5 +72,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.", "Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.", "Current scanning" => "Er wordt gescand", +"file" => "bestand", +"files" => "bestanden", "Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..." ); diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 10f103973e..703aeb3fba 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -42,5 +42,7 @@ "Upload too large" => "Amontcargament tròp gròs", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor.", "Files are being scanned, please wait." => "Los fiichièrs son a èsser explorats, ", -"Current scanning" => "Exploracion en cors" +"Current scanning" => "Exploracion en cors", +"file" => "fichièr", +"files" => "fichièrs" ); diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 5c41c8d3c8..a3acfea661 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -49,6 +49,7 @@ "{count} folders" => "Ilość folderów: {count}", "1 file" => "1 plik", "{count} files" => "Ilość plików: {count}", +"%s could not be renamed" => "%s nie można zmienić nazwy", "Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", @@ -72,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość.", "Files are being scanned, please wait." => "Skanowanie plików, proszę czekać.", "Current scanning" => "Aktualnie skanowane", +"directory" => "Katalog", +"directories" => "Katalogi", +"file" => "plik", +"files" => "pliki", "Upgrading filesystem cache..." => "Uaktualnianie plików pamięci podręcznej..." ); diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 6651adca82..3ad679f876 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -73,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", "Files are being scanned, please wait." => "Arquivos sendo escaneados, por favor aguarde.", "Current scanning" => "Scanning atual", +"directory" => "diretório", +"directories" => "diretórios", +"file" => "arquivo", +"files" => "arquivos", "Upgrading filesystem cache..." => "Atualizando cache do sistema de arquivos..." ); diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index ba704b4109..4273de9c47 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.", "Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.", "Current scanning" => "Análise actual", +"file" => "ficheiro", +"files" => "ficheiros", "Upgrading filesystem cache..." => "Atualizar cache do sistema de ficheiros..." ); diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index d6d60e2868..b12f9d1059 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server.", "Files are being scanned, please wait." => "Fișierele sunt scanate, te rog așteptă.", "Current scanning" => "În curs de scanare", +"file" => "fișier", +"files" => "fișiere", "Upgrading filesystem cache..." => "Modernizare fisiere de sistem cache.." ); diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 71bda3dc88..2db90413f2 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере.", "Files are being scanned, please wait." => "Подождите, файлы сканируются.", "Current scanning" => "Текущее сканирование", +"file" => "файл", +"files" => "файлы", "Upgrading filesystem cache..." => "Обновление кэша файловой системы..." ); diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index 50745f0eff..82fca4bc75 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -44,5 +44,7 @@ "Upload too large" => "උඩුගත කිරීම විශාල වැඩිය", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය", "Files are being scanned, please wait." => "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න", -"Current scanning" => "වර්තමාන පරික්ෂාව" +"Current scanning" => "වර්තමාන පරික්ෂාව", +"file" => "ගොනුව", +"files" => "ගොනු" ); diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index b1ec8bccf4..b8382c7b0b 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server.", "Files are being scanned, please wait." => "Čakajte, súbory sú prehľadávané.", "Current scanning" => "Práve prezerané", +"file" => "súbor", +"files" => "súbory", "Upgrading filesystem cache..." => "Aktualizujem medzipamäť súborového systému..." ); diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 8ba4d784ed..4516be1508 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -72,5 +72,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku.", "Files are being scanned, please wait." => "Poteka preučevanje datotek, počakajte ...", "Current scanning" => "Trenutno poteka preučevanje", +"file" => "datoteka", +"files" => "datoteke", "Upgrading filesystem cache..." => "Nadgrajevanje predpomnilnika datotečnega sistema ..." ); diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 7868d1cca2..70f3121a20 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -73,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.", "Files are being scanned, please wait." => "Filer skannas, var god vänta", "Current scanning" => "Aktuell skanning", +"directory" => "mapp", +"directories" => "mappar", +"file" => "fil", +"files" => "filer", "Upgrading filesystem cache..." => "Uppgraderar filsystemets cache..." ); diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index a71409f99e..5b2eab6b3a 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -66,5 +66,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้", "Files are being scanned, please wait." => "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่.", "Current scanning" => "ไฟล์ที่กำลังสแกนอยู่ขณะนี้", +"file" => "ไฟล์", +"files" => "ไฟล์", "Upgrading filesystem cache..." => "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..." ); diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index b4dc576638..0b2dbb12dd 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.", "Files are being scanned, please wait." => "Dosyalar taranıyor, lütfen bekleyin.", "Current scanning" => "Güncel tarama", +"file" => "dosya", +"files" => "dosyalar", "Upgrading filesystem cache..." => "Sistem dosyası önbelleği güncelleniyor" ); diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index f1a291a901..261853ef20 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері.", "Files are being scanned, please wait." => "Файли скануються, зачекайте, будь-ласка.", "Current scanning" => "Поточне сканування", +"file" => "файл", +"files" => "файли", "Upgrading filesystem cache..." => "Оновлення кеша файлової системи..." ); diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 5ae06522c4..e3c9fd5488 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ .", "Files are being scanned, please wait." => "Tập tin đang được quét ,vui lòng chờ.", "Current scanning" => "Hiện tại đang quét", +"file" => "file", +"files" => "files", "Upgrading filesystem cache..." => "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..." ); diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index a9dd726faa..4108516cda 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -51,5 +51,7 @@ "Upload too large" => "上传过大", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "你正在试图上传的文件超过了此服务器支持的最大的文件大小.", "Files are being scanned, please wait." => "正在扫描文件,请稍候.", -"Current scanning" => "正在扫描" +"Current scanning" => "正在扫描", +"file" => "文件", +"files" => "文件" ); diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 826de79c59..68680676a1 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -73,5 +73,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "您正尝试上传的文件超过了此服务器可以上传的最大容量限制", "Files are being scanned, please wait." => "文件正在被扫描,请稍候。", "Current scanning" => "当前扫描", +"file" => "文件", +"files" => "文件", "Upgrading filesystem cache..." => "正在更新文件系统缓存..." ); diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index fd917f654c..3c0b39bab6 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta.", "Private key password successfully updated." => "La contrasenya de la clau privada s'ha actualitzat.", "Could not update the private key password. Maybe the old password was not correct." => "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.", -"PHP module OpenSSL is not installed." => "El mòdul OpenSSL de PHP no està instal·lat.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Demaneu a l'administrador del servidor que instal·li el mòdul. Per ara, l'aplicació d'encriptació s'ha deshabilitat.", "Saving..." => "Desant...", "Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", "You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index ff5ca1007f..5e4dcb5b1f 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", "Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", -"PHP module OpenSSL is not installed." => "Das PHP-Modul OpenSSL ist nicht installiert.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Bitte fragen Sie Ihren Server-Administrator, das entsprechende Modul zu installieren. Bis dahin wurde die Anwendung zur Verschlüsselung deaktiviert.", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", "personal settings" => "Persönliche Einstellungen", diff --git a/apps/files_encryption/l10n/eo.php b/apps/files_encryption/l10n/eo.php index f6e0e884f3..997b60f8ac 100644 --- a/apps/files_encryption/l10n/eo.php +++ b/apps/files_encryption/l10n/eo.php @@ -2,7 +2,6 @@ "Password successfully changed." => "La pasvorto sukcese ŝanĝiĝis.", "Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.", "Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.", -"PHP module OpenSSL is not installed." => "La PHP-modulo OpenSSL ne instalitas.", "Saving..." => "Konservante...", "personal settings" => "persona agordo", "Encryption" => "Ĉifrado", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index e523a13bb6..42a79e4fd2 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -7,8 +7,7 @@ "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", -"PHP module OpenSSL is not installed." => "El módulo OpenSSL de PHP no está instalado.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", "You can unlock your private key in your " => "Puede desbloquear su clave privada en su", diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index 82ea3e06a6..b6f3fed8a6 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de la clave privada. Tal vez la contraseña antigua no es correcta.", -"PHP module OpenSSL is not installed." => "El módulo OpenSSL para PHP no está instalado.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Pedile al administrador del servidor que instale el módulo. Por ahora la App de encriptación está deshabilitada.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.", "You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu", diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index 07d30c7b93..22fe793268 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -7,7 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "Ezin izan da pasahitza aldatu. Agian pasahitz zaharra okerrekoa da.", "Private key password successfully updated." => "Gako pasahitz pribatu behar bezala eguneratu da.", "Could not update the private key password. Maybe the old password was not correct." => "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da.", -"PHP module OpenSSL is not installed." => "OpenSSL PHP modulua ez dago instalaturik.", "Saving..." => "Gordetzen...", "personal settings" => "ezarpen pertsonalak", "Encryption" => "Enkriptazioa", diff --git a/apps/files_encryption/l10n/fi_FI.php b/apps/files_encryption/l10n/fi_FI.php index b52d9bc7f6..a00cc8ab96 100644 --- a/apps/files_encryption/l10n/fi_FI.php +++ b/apps/files_encryption/l10n/fi_FI.php @@ -1,7 +1,6 @@ "Salasana vaihdettiin onnistuneesti.", "Could not change the password. Maybe the old password was not correct." => "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.", -"PHP module OpenSSL is not installed." => "PHP-moduulia OpenSSL ei ole asennettu.", "Saving..." => "Tallennetaan...", "Encryption" => "Salaus", "Enabled" => "Käytössä", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 5942d84068..44f6543672 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.", -"PHP module OpenSSL is not installed." => "Le module OpenSSL de PHP n'est pas installé.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé.", "Saving..." => "Enregistrement...", "Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", "You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index 6b89db9e74..7469aba495 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "A chave privada foi actualizada correctamente.", "Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", -"PHP module OpenSSL is not installed." => "O módulo PHP OpenSSL non está instalado.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Pregúntelle ao administrador do servidor pola instalación do módulo. Polo de agora o aplicativo de cifrado foi desactivado.", "Saving..." => "Gardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", "You can unlock your private key in your " => "Pode desbloquear a chave privada nos seus", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 6982d2d58d..5b43d6321f 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "Password della chiave privata aggiornata correttamente.", "Could not update the private key password. Maybe the old password was not correct." => "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.", -"PHP module OpenSSL is not installed." => "Il modulo PHP OpenSSL non è installato.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Chiedi all'amministratore del server di installare il modulo. Per ora la crittografia è disabilitata.", "Saving..." => "Salvataggio in corso...", "Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", "You can unlock your private key in your " => "Puoi sbloccare la chiave privata nelle tue", diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index ce1e3fd0f3..5f2d3656e2 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "秘密鍵のパスワードが正常に更新されました。", "Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。", -"PHP module OpenSSL is not installed." => "PHPのモジュール OpenSSLがインストールされていません。", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "サーバーの管理者にモジュールのインストールを頼んでください。さしあたり暗号化アプリは無効化されました。", "Saving..." => "保存中...", "Your private key is not valid! Maybe the your password was changed from outside." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", "You can unlock your private key in your " => "個人設定で", diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index cac25c8c80..093ed2c29c 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd.", "Private key password successfully updated." => "Privésleutel succesvol bijgewerkt.", "Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.", -"PHP module OpenSSL is not installed." => "PHP module OpenSSL is niet geïnstalleerd.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Vraag uw beheerder deze module te installeren. Tot zolang is de crypto app gedeactiveerd.", "Saving..." => "Opslaan", "Your private key is not valid! Maybe the your password was changed from outside." => "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd.", "You can unlock your private key in your " => "U kunt uw privésleutel deblokkeren in uw", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index fce5abfcaf..3928afb1d5 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "Nie można zmienić hasła. Może stare hasło nie było poprawne.", "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", -"PHP module OpenSSL is not installed." => "Moduł PHP OpenSSL nie jest zainstalowany", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Proszę poproś administratora serwera aby zainstalował ten moduł. Obecnie aplikacja szyfrowanie została wyłączona.", "Saving..." => "Zapisywanie...", "Your private key is not valid! Maybe the your password was changed from outside." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz.", "You can unlock your private key in your " => "Możesz odblokować swój klucz prywatny w swojej", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index c8aa26188a..cb6a881ae0 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", -"PHP module OpenSSL is not installed." => "O módulo PHP OpenSSL não está instalado.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Por favor peça ao administrador do servidor para instalar o módulo. Por enquanto o app de encriptação foi desabilitada.", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", "You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index 38ee85ad87..19a8287ada 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "Невозможно изменить пароль. Возможно старый пароль не был верен.", "Private key password successfully updated." => "Пароль секретного ключа успешно обновлён.", "Could not update the private key password. Maybe the old password was not correct." => "Невозможно обновить пароль от секретного ключа. Возможно, старый пароль указан неверно.", -"PHP module OpenSSL is not installed." => "Модуль OpenSSL для PHP не установлен.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Попросите администратора сервера установить модуль. Приложение шифрования было временно отключено.", "Saving..." => "Сохранение...", "Your private key is not valid! Maybe the your password was changed from outside." => "Секретный ключ недействителен! Возможно, Ваш пароль был изменён в другой программе.", "You can unlock your private key in your " => "Вы можете разблокировать закрытый ключ в своём ", diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 9ae64797be..8b28ba0115 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "Zasebni ključ za geslo je bil uspešno posodobljen.", "Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah.", -"PHP module OpenSSL is not installed." => "PHP-modul OpenSSL ni nameščen.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Obvestite skrbnika strežnika, da namesti manjkajoč modul. Trenutno je šifriranje onemogočeno.", "Saving..." => "Poteka shranjevanje ...", "Your private key is not valid! Maybe the your password was changed from outside." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno.", "You can unlock your private key in your " => "Svoj zasebni ključ lahko odklenite v", diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 986ddbddf2..3659e22bb4 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "Den privata lösenordsnyckeln uppdaterades utan problem.", "Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", -"PHP module OpenSSL is not installed." => "PHP-modulen för OpenSSL är inte installerad.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Be din systemadministratör att installera modulen. För tillfället är appen för kryptering inaktiverad.", "Saving..." => "Sparar...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", "You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index 0896687aa8..a3939165c7 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "私钥密码成功更新。", "Could not update the private key password. Maybe the old password was not correct." => "无法更新私钥密码。可能旧密码不正确。", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "您的私有密钥无效!也许是您在 ownCloud 系统外更改了密码 (比如,在您的公司目录)。您可以在个人设置里更新您的私钥密码来恢复访问你的加密文件。", -"PHP module OpenSSL is not installed." => "PHP 模块 OpenSSL 未安装。", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "请请求您的服务器管理员安装该模块。现在加密应用被禁用。", "Saving..." => "保存中", "Your private key is not valid! Maybe the your password was changed from outside." => "您的私钥不正确!可能您在别处更改了密码。", "You can unlock your private key in your " => "您可以在这里解锁您的私钥:", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index dbe7a34de3..08cf4317d2 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -1,13 +1,20 @@ "Den/D' %s huet »%s« mat dir gedeelt", +"Category type not provided." => "Typ vun der Kategorie net uginn.", "No category to add?" => "Keng Kategorie fir bäizesetzen?", +"This category already exists: %s" => "Dës Kategorie existéiert schon: %s", +"Object type not provided." => "Typ vum Objet net uginn.", +"%s ID not provided." => "%s ID net uginn.", +"Error adding %s to favorites." => "Feeler beim dobäisetze vun %s bei d'Favoritten.", "No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze läschen.", -"Sunday" => "Sonndes", -"Monday" => "Méindes", -"Tuesday" => "Dënschdes", +"Error removing %s from favorites." => "Feeler beim läsche vun %s aus de Favoritten.", +"Sunday" => "Sonndeg", +"Monday" => "Méindeg", +"Tuesday" => "Dënschdeg", "Wednesday" => "Mëttwoch", -"Thursday" => "Donneschdes", -"Friday" => "Freides", -"Saturday" => "Samschdes", +"Thursday" => "Donneschdeg", +"Friday" => "Freideg", +"Saturday" => "Samschdeg", "January" => "Januar", "February" => "Februar", "March" => "Mäerz", @@ -21,60 +28,116 @@ "November" => "November", "December" => "Dezember", "Settings" => "Astellungen", -"1 hour ago" => "vrun 1 Stonn", -"{hours} hours ago" => "vru {hours} Stonnen", -"last month" => "Läschte Mount", -"{months} months ago" => "vru {months} Méint", -"months ago" => "Méint hier", -"last year" => "Läscht Joer", -"years ago" => "Joren hier", +"seconds ago" => "Sekonnen hir", +"1 minute ago" => "1 Minutt hir", +"{minutes} minutes ago" => "virun {minutes} Minutten", +"1 hour ago" => "virun 1 Stonn", +"{hours} hours ago" => "virun {hours} Stonnen", +"today" => "haut", +"yesterday" => "gëschter", +"{days} days ago" => "virun {days} Deeg", +"last month" => "leschte Mount", +"{months} months ago" => "virun {months} Méint", +"months ago" => "Méint hir", +"last year" => "Lescht Joer", +"years ago" => "Joren hir", "Choose" => "Auswielen", "Cancel" => "Ofbriechen", +"Error loading file picker template" => "Feeler beim Luede vun der Virlag fir d'Fichiers-Selektioun", "Yes" => "Jo", "No" => "Nee", "Ok" => "OK", -"Error" => "Fehler", +"The object type is not specified." => "Den Typ vum Object ass net uginn.", +"Error" => "Feeler", +"The app name is not specified." => "Den Numm vun der App ass net uginn.", +"The required file {file} is not installed!" => "De benéidegte Fichier {file} ass net installéiert!", +"Shared" => "Gedeelt", "Share" => "Deelen", +"Error while sharing" => "Feeler beim Deelen", +"Error while unsharing" => "Feeler beim Annuléiere vum Deelen", +"Error while changing permissions" => "Feeler beim Ännere vun de Rechter", +"Shared with you and the group {group} by {owner}" => "Gedeelt mat dir an der Grupp {group} vum {owner}", +"Shared with you by {owner}" => "Gedeelt mat dir vum {owner}", +"Share with" => "Deele mat", +"Share with link" => "Mat Link deelen", +"Password protect" => "Passwuertgeschützt", "Password" => "Passwuert", +"Allow Public Upload" => "Ëffentlechen Upload erlaaben", +"Email link to person" => "Link enger Persoun mailen", +"Send" => "Schécken", +"Set expiration date" => "Verfallsdatum setzen", +"Expiration date" => "Verfallsdatum", +"Share via email:" => "Via E-Mail deelen:", +"No people found" => "Keng Persoune fonnt", +"Resharing is not allowed" => "Weiderdeelen ass net erlaabt", +"Shared in {item} with {user}" => "Gedeelt an {item} mat {user}", "Unshare" => "Net méi deelen", +"can edit" => "kann änneren", +"access control" => "Zougrëffskontroll", "create" => "erstellen", +"update" => "aktualiséieren", "delete" => "läschen", "share" => "deelen", -"ownCloud password reset" => "ownCloud Passwuert reset", -"Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert ze reseten: {link}", -"You will receive a link to reset your password via Email." => "Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt.", +"Password protected" => "Passwuertgeschützt", +"Error unsetting expiration date" => "Feeler beim Läsche vum Verfallsdatum", +"Error setting expiration date" => "Feeler beim Setze vum Verfallsdatum", +"Sending ..." => "Gëtt geschéckt...", +"Email sent" => "Email geschéckt", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Den Update war net erfollegräich. Mell dëse Problem w.e.gl derownCloud-Community.", +"The update was successful. Redirecting you to ownCloud now." => "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet.", +"ownCloud password reset" => "Passwuert-Zrécksetzung vun der ownCloud", +"Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "De Link fir d'Passwuert zréckzesetzen gouf un deng E-Mail-Adress geschéckt.
Falls du d'Mail net an den nächste Minutte kriss, kuck w.e.gl. an dengem Spam-Dossier.
Wann do och keng Mail ass, fro w.e.gl. däin Adminstrateur.", +"Request failed!
Did you make sure your email/username was right?" => "Ufro feelfeschloen!
Hues du séchergestallt dass deng Email respektiv däi Benotzernumm korrekt sinn?", +"You will receive a link to reset your password via Email." => "Du kriss e Link fir däi Passwuert zréckzesetze via Email geschéckt.", "Username" => "Benotzernumm", -"Request reset" => "Reset ufroen", -"Your password was reset" => "Dän Passwuert ass zeréck gesat gin", -"To login page" => "Op d'Login Säit", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Deng Fichiere si verschlësselt. Falls du de Recuperatiouns-Schlëssel net aktivéiert hues, gëtt et keng Méiglechkeet nees un deng Daten ze komme wann däi Passwuert muss zréckgesat ginn. Falls du net sécher bass wat s de maache soll, kontaktéier w.e.gl däin Administrateur bevir s de weidermëss. Wëlls de wierklech weidermaachen?", +"Yes, I really want to reset my password now" => "Jo, ech wëll mäi Passwuert elo zrécksetzen", +"Request reset" => "Zrécksetzung ufroen", +"Your password was reset" => "Däi Passwuert ass zréck gesat ginn", +"To login page" => "Bei d'Login-Säit", "New password" => "Neit Passwuert", -"Reset password" => "Passwuert zeréck setzen", +"Reset password" => "Passwuert zréck setzen", "Personal" => "Perséinlech", "Users" => "Benotzer", -"Apps" => "Applicatiounen", +"Apps" => "Applikatiounen", "Admin" => "Admin", "Help" => "Hëllef", -"Access forbidden" => "Access net erlaabt", +"Access forbidden" => "Zougrëff net erlaabt", "Cloud not found" => "Cloud net fonnt", -"web services under your control" => "Web Servicer ënnert denger Kontroll", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.\nKucken: %s\n\nE schéine Bonjour!", +"web services under your control" => "Web-Servicer ënnert denger Kontroll", "Edit categories" => "Kategorien editéieren", "Add" => "Dobäisetzen", -"Security Warning" => "Sécherheets Warnung", -"Create an admin account" => "En Admin Account uleeën", +"Security Warning" => "Sécherheets-Warnung", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Deng PHP-Versioun ass verwonnbar duerch d'NULL-Byte-Attack (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Aktualiséier w.e.gl deng PHP-Installatioun fir ownCloud sécher benotzen ze kënnen.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Et ass kee sécheren Zoufallsgenerator verfügbar. Aktivéier w.e.gl d'OpenSSL-Erweiderung vu PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ouni e sécheren Zoufallsgenerator kann en Ugräifer d'Passwuert-Zrécksetzungs-Schlësselen viraussoen an en Account iwwerhuelen.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Däin Daten-Dossier an deng Fichieren si wahrscheinlech iwwert den Internet accessibel well den .htaccess-Fichier net funktionnéiert.", +"For information how to properly configure your server, please see the documentation." => "Kuck w.e.gl. an der Dokumentatioun fir Informatiounen iwwert eng uerdentlech Konfiguratioun vum Server.", +"Create an admin account" => "En Admin-Account uleeën", "Advanced" => "Avancéiert", -"Data folder" => "Daten Dossier", -"Configure the database" => "Datebank konfiguréieren", +"Data folder" => "Daten-Dossier", +"Configure the database" => "D'Datebank konfiguréieren", "will be used" => "wärt benotzt ginn", -"Database user" => "Datebank Benotzer", -"Database password" => "Datebank Passwuert", +"Database user" => "Datebank-Benotzer", +"Database password" => "Datebank-Passwuert", "Database name" => "Datebank Numm", -"Database tablespace" => "Datebank Tabelle-Gréisst", -"Database host" => "Datebank Server", +"Database tablespace" => "Tabelle-Plaz vun der Datebank", +"Database host" => "Datebank-Server", "Finish setup" => "Installatioun ofschléissen", -"Log out" => "Ausloggen", +"%s is available. Get more information on how to update." => "%s ass verfügbar. Kréi méi Informatiounen doriwwer wéi d'Aktualiséierung ofleeft.", +"Log out" => "Ofmellen", +"Automatic logon rejected!" => "Automatesch Umeldung ofgeleent!", +"If you did not change your password recently, your account may be compromised!" => "Falls du däi Passwuert net viru kuerzem geännert hues, kéint däin Account kompromittéiert sinn!", +"Please change your password to secure your account again." => "Änner w.e.gl däi Passwuert fir däin Account nees ofzesécheren.", "Lost your password?" => "Passwuert vergiess?", "remember" => "verhalen", -"Log in" => "Log dech an", +"Log in" => "Umellen", +"Alternative Logins" => "Alternativ Umeldungen", +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" => "Hallo,

ech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.
Kucken!

E schéine Bonjour!", "prev" => "zeréck", -"next" => "weider" +"next" => "weider", +"Updating ownCloud to version %s, this may take a while." => "ownCloud gëtt op d'Versioun %s aktualiséiert, dat kéint e Moment daueren." ); diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 198c9a132d..26e10e5db7 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "" msgid "Finish setup" msgstr "Maak opstelling klaar" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Teken uit" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index eade3335a6..920cb21898 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index c2dd24dc83..ff1a3d94c2 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Wagwoord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 2bfe7ea15b..dc43f20e15 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Toepassings" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 8ba80c33e4..5f270eee1c 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "خادم قاعدة البيانات" msgid "Finish setup" msgstr "انهاء التعديلات" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "الخروج" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index d65c490dbd..6b03f3a8ac 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index 5cd3a40792..b364ef0b1a 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 969f243559..acd67b816b 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 62f047c55e..3bfa13436f 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "كلمة المرور" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "تطبيق" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "تحميل" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "رفع" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 6f016ef61a..7c234b5e27 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 07f28cf92c..8af48217de 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "التطبيقات" msgid "Admin" msgstr "المدير" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "تحميل ملفات ZIP متوقف" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index e3ce06d160..ccb9e98dc7 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "حصل خطأ اثناء انشاء مستخدم" msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "تحذير أمان" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "مجلدات data وملفاتك قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت. ملف .htaccess الذي وفرته Owncloud لا يعمل . نقترح أن تقوم باعداد خادمك بطريقة تجعل مجلد data غير قابل للوصول اليه عن طريق الانترنت أو أن تقوم بتغيير مساره الى خارج مسار مجلد الصفحات الافتراضي document root الخاص بخادم الويب ." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "تحذير في التنصيب" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "الرجاء التحقق من دليل التنصيب." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "الموديل 'fileinfo' مفقود" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "اللغه لا تعمل" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "لم يتمكن خادم ownCloud هذا كم ضبط لغة النظام الى %s . هذا يعني انه قد يكون هناك أخطاء في اسماء الملفات. نحن نوصي ان تقوم بتركيب الحزم اللازمة لدعم %s على نظامك . " -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "الاتصال بالانترنت لا يعمل" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "خادم الـ Owncloud هذا غير متصل بالانترنت. هذا يعني أن بعض الميزات مثل الربط بوحدة تخزينية خارجيه, التنبيهات الخاصة بالتحديثات أو تركيب تطبيقات من مصادر خارجية لن يعمل . كما ان الوصول الى الملفات من خارج الخادم وارسال رسائل البريد التنبيهية لن تعمل أيضا . نقترح أن تفعل خدمة الانترنت في هذا الخادم اذا أردت ان تستفيد من كافة ميزات Owncloud" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "مجدول" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php مسجلة في خدمة webcron . قم باستدعاء صفحة cron.php الموجودة في owncloud root مره كل دقيقة عن طريق بروتوكول http" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "قم باستخدام خدمة cron . قم باستدعاء ملف cron.php الموجود في مجلد Owncloud عن طريق system cronjob مره كل دقيقة" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "حماية" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "اجبار المستخدم بالاتصال مع Owncloud عن طريق اتصال مشفر" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "الرجاء الاتصال مع خادم Owncloud هذا عن طريق HTTPS لتفعيل أو تعطيل اجبار الدخول باستخدام " -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "سجل" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "المزيد" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "أقل" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "إصدار" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "تم إستهلاك %s من المتوفر %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "كلمة المرور" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "لقد تم تغيير كلمة السر" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "اسم الحساب" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "البريد الإلكترونى" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "اللغة" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 3a539f3f11..d0266647f5 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index ca0c326132..3fc7cf1938 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index 2812c182b0..43b93d5cff 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 9624767b8e..4d50e77416 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 8569c3b3d2..99c5aa1467 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Хост за базата" msgid "Finish setup" msgstr "Завършване на настройките" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Изход" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 0673856f82..538caac053 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -337,7 +337,7 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "файл" #: templates/part.list.php:91 msgid "files" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 88b057c00d..6fda53b831 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 0158328af6..9e141cb00e 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index e9b40ec6a6..c31e6732a5 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Парола" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Потвърждение" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Качване" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Няма наличен преглед за" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 8cdd64cad5..1c711b410d 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index b4f6b07a3a..d784089510 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Приложения" msgid "Admin" msgstr "Админ" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Изтеглянето като ZIP е изключено." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 6cebb56c5f..1bfeca86d5 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Моля направете повторна справка с ръководството за инсталиране." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Крон" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Споделяне" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Още" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "По-малко" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Версия" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Парола" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Промяната на паролата не беше извършена" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Текуща парола" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Нова парола" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Промяна на паролата" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Екранно име" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Вашия email адрес" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Въведете е-поща за възстановяване на паролата" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Език" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Помогнете с превода" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 14403c491d..3927f633a9 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 3bd7bcddde..5bf76871da 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "ডাটাবেজ হোস্ট" msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "প্রস্থান" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index dabf23d663..3b6724b0a9 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index ce305946ea..6b42829178 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 74b60c4432..7e29c81daa 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index ea9a1b4660..0931aa5aac 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "কূটশব্দ" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "জমা দিন" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 92c63b8298..b788744e13 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 4c99f99195..86fb33b284 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "অ্যাপ" msgid "Admin" msgstr "প্রশাসন" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index e117862fd7..4bf09e5aa9 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "নিরাপত্তাজনিত সতর্কতা" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "বেশী" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "কম" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "কূটশব্দ" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "বর্তমান কূটশব্দ" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "নতুন কূটশব্দ" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "ইমেইল" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index a7b8231686..d2c640133c 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 3b793c17fe..fbb8402c9f 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 06e4075ae9..da9a7eb0c1 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index 618d2d693d..15de964f5c 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po index 1f69bb25ca..6893cf5162 100644 --- a/l10n/bs/files_sharing.po +++ b/l10n/bs/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 4d03d1739a..d35c8d2db0 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 7cf68fb67a..815a68397d 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index bfae98613a..6fbdcf45b0 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Ordinador central de la base de dades" msgid "Finish setup" msgstr "Acaba la configuració" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s està disponible. Obtingueu més informació de com actualitzar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Surt" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 2d0963bb47..8ab23d300c 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fitxer" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fitxers" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 46c19e02c7..eaef93d687 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -64,14 +64,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "El mòdul OpenSSL de PHP no està instal·lat." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Demaneu a l'administrador del servidor que instal·li el mòdul. Per ara, l'aplicació d'encriptació s'ha deshabilitat." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index cd994e07c6..8534e26563 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 16b1474c51..9e5977b160 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contrasenya" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Envia" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Baixa" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Puja" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index a212b86057..4681c1b935 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 91228aea34..fdb8edcebf 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicacions" msgid "Admin" msgstr "Administració" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 393f93eea2..65bdf73f5b 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Error en crear l'usuari" msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Català" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avís de seguretat" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Avís de configuració" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "No s'ha trobat el mòdul 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale no funciona" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Aquest servidor ownCloud no pot establir el locale del sistema a %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "La connexió a internet no funciona" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Aquest servidor ownCloud no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament externs, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu gaudir de totes les possibilitats d'ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Executa una tasca per cada paquet carregat" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php està registrat en un servei webcron. Feu la crida a cron.php a l'arrel d'ownCloud cada minut a través de http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Usa un servei cron del sistema. Feu la crida al fitxer cron.php a través d'un cronjob del sistema cada minut." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartir" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Habilita l'API de compartir" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions utilitzin l'API de compartir" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris compartir de nou elements ja compartits amb ells" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permet compartir amb qualsevol" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Força als clients la connexió amb ownCloud via una connexió encriptada." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Connecteu aquesta instància onwCloud via HTTPS per habilitar o deshabilitar el forçament SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registre" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Més" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menys" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versió" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Heu utilitzat %s d'un total disponible de %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nom a mostrar" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 4d218832d4..3cec288bb7 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 54b83b2e0e..9138ea0101 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Hostitel databáze" msgid "Finish setup" msgstr "Dokončit nastavení" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je dostupná. Získejte více informací k postupu aktualizace." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odhlásit se" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 5f1967ce9b..2b6ee0294f 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "soubor" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "soubory" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 56af9032b4..1d95d95e25 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -64,13 +64,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 3ad25fe80f..99080f6468 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 38436e7b8f..0043decb9d 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Odeslat" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s s Vámi sdílí složku %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Odeslat" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Náhled není dostupný pro" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index b9a53dae38..758837aa50 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 2d5a50e30e..590145f5ff 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplikace" msgid "Admin" msgstr "Administrace" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Stahování ZIPu je vypnuto." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 454fe4049d..b94f900a6d 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Chyba při vytváření užiatele" msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Česky" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Bezpečnostní upozornění" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess, který je poskytován ownCloud, nefunguje. Důrazně Vám doporučujeme nastavit váš webový server tak, aby nebyl adresář dat přístupný, nebo přesunout adresář dat mimo kořenovou složku dokumentů webového serveru." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Upozornění nastavení" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Schází modul 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale nefunguje" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Server ownCloud nemůže nastavit locale systému na %s. Můžete tedy mít problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat potřebné balíčky pro podporu %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Spojení s internetem nefujguje" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Server ownCloud nemá funkční spojení s internetem. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích, nebo instalace aplikací třetích stran nefungují. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit internetové spojení pro tento server." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Spustit jednu úlohu s každou načtenou stránkou" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Vynutí připojování klientů ownCloud skrze šifrované spojení." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Připojte se, prosím, k této instanci ownCloud skrze HTTPS pro povolení, nebo zakažte vynucení SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Záznam" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Více" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Méně" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Verze" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Používáte %s z %s dostupných" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Vaše heslo nelze změnit" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované jméno" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index cc3d96175a..865a34ee5d 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index f6888aa73c..f44f0d9603 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Gwesteiwr cronfa ddata" msgid "Finish setup" msgstr "Gorffen sefydlu" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Allgofnodi" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index d2247f84b9..b280b5455b 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index 4fe576b4ad..580563b10a 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 3ebded1862..7d5adeb8a7 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index c2cbdfa610..7d6e39539f 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Cyfrinair" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Cyflwyno" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "Rhannodd %s blygell %s â chi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Does dim rhagolwg ar gael ar gyfer" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 273ab0bb90..43df1cb186 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index cc12f23d26..d12d31ee5e 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Pecynnau" msgid "Admin" msgstr "Gweinyddu" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Mae llwytho ZIP wedi ei ddiffodd." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index b6a47c9645..3394892a68 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Rhybudd Diogelwch" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Gwiriwch y canllawiau gosod eto." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Cyfrinair" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Cyfrinair newydd" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-bost" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 94f1fbefe1..7271157e5d 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 4fcad13a63..9ed55ab32c 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Databasehost" msgid "Finish setup" msgstr "Afslut opsætning" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er tilgængelig. Få mere information om, hvordan du opdaterer." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Log ud" diff --git a/l10n/da/files.po b/l10n/da/files.po index 48982a98e2..f440670111 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fil" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "filer" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index f111e55c40..9df3c49abd 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index b3e00bab62..0822a3fbae 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index f92cd3bde6..e0e89dbd5b 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Kodeord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Send" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Download" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Upload" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 3318d55688..8e26f0f1c1 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 5d67dde28d..900335a804 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Apps" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index b0a4ca6625..02620a5a83 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Fejl ved oprettelse af bruger" msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Dansk" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sikkerhedsadvarsel" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver på en måske så data mappen ikke længere er tilgængelig eller at du flytter data mappen uden for webserverens dokument rod. " -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Opsætnings Advarsel" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' mangler" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Landestandard fungerer ikke" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Denne ownCloud server kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internetforbindelse fungerer ikke" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af eksterne applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker alle ownClouds funktioner." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Udføre en opgave med hver side indlæst" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php er registreret hos en webcron service. Kald cron.php side i owncloud rod en gang i minuttet over HTTP." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Brug system cron service. Kald cron.php filen i owncloud mappe via et system cronjob en gang i minuttet." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktiver Share API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Tillad apps til at bruge Share API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer til offentligheden med links" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Tillad videredeling" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Tillad brugere at dele elementer delt med dem igen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med alle" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Tillad brugere at kun dele med brugerne i deres grupper" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Håndhæver klienter at oprette forbindelse til ownCloud via en krypteret forbindelse." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Opret forbindelse til denne ownCloud enhed via HTTPS for at aktivere eller deaktivere SSL håndhævelse." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mere" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mindre" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brugt %s af den tilgængelige %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kodeord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Din adgangskode blev ændret" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nyt kodeord" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Skærmnavn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Indtast en emailadresse for at kunne få påmindelse om adgangskode" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Sprog" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index fced5ee77b..376fd0238e 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index f03b72442a..a6cacb3fc7 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -577,12 +577,12 @@ msgstr "Datenbank-Host" msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Abmelden" diff --git a/l10n/de/files.po b/l10n/de/files.po index 2f29b17c40..b528b3c2b6 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "Datei" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 890d35cfb3..a1ca99ba26 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -65,13 +65,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 8883bde963..f3cdeba0bf 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 90649344fd..77223a57f7 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Absenden" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Download" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index ad751e9751..15dd9ceed0 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index fa48a825e5..ca9e8ded5f 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -43,6 +43,10 @@ msgstr "Apps" msgid "Admin" msgstr "Administration" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index d7d806c3ee..de687856b6 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -169,15 +169,15 @@ msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Deutsch (Persönlich)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sicherheitswarnung" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -186,36 +186,36 @@ msgid "" " webserver document root." msgstr "Dein Datenverzeichnis und Deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass Du Deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass Du Dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modul 'fileinfo' fehlt " -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Ländereinstellung funktioniert nicht" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -223,11 +223,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf Deinem System zu installieren." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Keine Netzwerkverbindung" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -237,102 +237,102 @@ msgid "" " of ownCloud." msgstr "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren, wenn Du alle Funktionen von ownCloud nutzen möchtest." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php ist an einem Webcron-Service registriert. Die cron.php Seite wird einmal pro Minute über http abgerufen." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Nutze den Cron Systemdienst. Rufe die Datei cron.php im owncloud Ordner einmal pro Minute über einen Cronjob auf." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktiviere Sharing-API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Erlaubt Apps die Nutzung der Share-API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Erlaubt Links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Erzwingt die Verwendung einer verschlüsselten Verbindung" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Bitte verbinde Dich über eine HTTPS Verbindung mit diesem ownCloud Server um diese Einstellung zu ändern" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mehr" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Weniger" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du verwendest %s der verfügbaren %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Sprache" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index c157b07fc4..50dc8c9c5f 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index fc96f3aa6a..249b57410d 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: SteinQuadrat\n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -578,12 +578,12 @@ msgstr "Datenbank-Host" msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Abmelden" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 811649ba48..648e1db33b 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -5,14 +5,15 @@ # Translators: # a.tangemann , 2013 # SteinQuadrat, 2013 +# I Robot , 2013 # Marcel Kühlhorn , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 10:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -333,19 +334,19 @@ msgstr "Scanne" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "Verzeichnis" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "Verzeichnisse" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "Datei" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 844d88cb3e..e69754efc7 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -65,14 +65,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Das PHP-Modul OpenSSL ist nicht installiert." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Bitte fragen Sie Ihren Server-Administrator, das entsprechende Modul zu installieren. Bis dahin wurde die Anwendung zur Verschlüsselung deaktiviert." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index bdf56cdcbf..786101ca43 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 30d42bf095..dca2954cde 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Bestätigen" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 1b3af7b541..a4ce4fbb3a 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 01c6c16202..22f47921c0 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Apps" msgid "Admin" msgstr "Administrator" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 706faaaad5..0ded3edfd0 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -170,15 +170,15 @@ msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Deutsch (Förmlich: Sie)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -187,36 +187,36 @@ msgid "" " webserver document root." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -224,11 +224,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Dieser ownCloud-Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -238,102 +238,102 @@ msgid "" " of ownCloud." msgstr "Dieser ownCloud-Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungs-E-Mails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen von ownCloud nutzen wollen." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php ist bei einem Webcron-Service registriert. Die cron.php Seite im ownCloud-Wurzelverzeichniss wird einmal pro Minute über http abgerufen." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Nutzen Sie den Cron-Systemdienst. Rufen Sie die Datei cron.php im ownCloud-Ordner einmal pro Minute über einen Cronjob auf." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung mit ownCloud zu verbinden." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Bitte verbinden Sie sich mit dieser ownCloud-Instanz per HTTPS, um SSL-Erzwingung zu aktivieren oder deaktivieren." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mehr" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Weniger" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Sprache" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index de00f19f1a..88cd8acc44 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index 41721aaee3..c47c732151 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 20:40+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 10:31+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 4069a7177b..d04be94c87 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -579,12 +579,12 @@ msgstr "Διακομιστής βάσης δεδομένων" msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Αποσύνδεση" diff --git a/l10n/el/files.po b/l10n/el/files.po index 0c9f5208df..89acbf734f 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "αρχείο" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "αρχεία" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index c3a6187c73..684d9d810e 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -65,13 +65,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 679092695d..e6e7f43c66 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index cbb4fd3f4f..6840ade874 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Συνθηματικό" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Λήψη" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 8501f61d7d..2005318227 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 2723ec84d4..77e1ccba26 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Εφαρμογές" msgid "Admin" msgstr "Διαχειριστής" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." diff --git a/l10n/el/settings.po b/l10n/el/settings.po index c429cfde78..0a4b4c5e5c 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -170,15 +170,15 @@ msgstr "Σφάλμα δημιουργίας χρήστη" msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__όνομα_γλώσσας__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Προειδοποίηση Ασφαλείας" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -187,36 +187,36 @@ msgid "" " webserver document root." msgstr "Ο κατάλογος data και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess που παρέχει το ownCloud δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος data να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο data έξω από τον κατάλογο του διακομιστή." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Ρύθμιση Προειδοποίησης" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Η ενοτητα 'fileinfo' λειπει" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. " -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Η μετάφραση δεν δουλεύει" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -224,11 +224,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Αυτός ο ownCloud διακομιστης δεν μπορείτε να εφαρμοσει το σύνολο τοπικής προσαρμογής συστημάτων στο %s. Αυτό σημαίνει ότι μπορεί να υπάρξουν προβλήματα με ορισμένους χαρακτήρες σε ονόματα αρχείων. Σας συνιστούμε να εγκαταστήσετε τις απαραίτητες συσκευασίες στο σύστημά σας για να υποστηρίχθει το %s. " -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Η σύνδεση στο διαδίκτυο δεν δουλεύει" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -238,102 +238,102 @@ msgid "" " of ownCloud." msgstr "Αυτός ο διακομιστής ownCloud δεν έχει σύνδεση στο Διαδίκτυο. Αυτό σημαίνει ότι ορισμένα από τα χαρακτηριστικά γνωρίσματα όπως η τοποθέτηση εξωτερικής αποθήκευσης, οι κοινοποιήσεις σχετικά με ανανεωσεις, ή εγκατάσταση 3ων εφαρμογές δεν λειτουργούν. Η πρόσβαση σε αρχεία και η αποστολή μηνυμάτων ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην λειτουργεί. Σας προτείνουμε να σύνδεθειτε στο διαδικτυο αυτό τον διακομιστή, εάν θέλετε να έχετε όλα τα χαρακτηριστικά του ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Επιβολή στους πελάτες να συνδεθούν στο ownCloud μέσω μιας κρυπτογραφημένης σύνδεσης." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Παρακαλώ συνδεθείτε με το ownCloud μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή SSL. " -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Χρησιμοποιήσατε %s από διαθέσιμα %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Συνθηματικό" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Το συνθηματικό σας έχει αλλάξει" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Όνομα εμφάνισης" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Ηλ. ταχυδρομείο" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index a93197fa90..253845aea8 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 6cab7182f1..f6b7089c65 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po index 0a1f6226bd..c0cec032f0 100644 --- a/l10n/en@pirate/files_encryption.po +++ b/l10n/en@pirate/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index ff7030281f..ed7f74f619 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Secret Code" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Submit" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Download" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index 8f2d8e45d7..b78612938d 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 5a5170ced6..39521193ea 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Datumbaza gastigo" msgid "Finish setup" msgstr "Fini la instalon" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Elsaluti" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 8ab1fa1e7a..a05bac1114 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "dosiero" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "dosieroj" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index a2eef53379..c5864c36b1 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "La PHP-modulo OpenSSL ne instalitas." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 43558dac1f..0a8b013786 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index f964522bbd..d2e80e9eed 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Pasvorto" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Sendi" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 4dd62c09b1..26ec4d5c75 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index d78eb3dd40..1b5c7a3751 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplikaĵoj" msgid "Admin" msgstr "Administranto" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 4541949954..4664e82e19 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Esperanto" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sekureca averto" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Bonvolu duoble kontroli la gvidilon por instalo." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Kunhavigo" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Kapabligi API-on por Kunhavigo" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Kapabligi ligilojn" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Kapabligi rekunhavigon" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Pli" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Malpli" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Eldono" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Vi uzas %s el la haveblaj %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 9cab28f48b..98ebab9995 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3821613eff..1000b828d5 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: saskarip \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -579,12 +579,12 @@ msgstr "Host de la base de datos" msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s esta disponible. Obtener mas información de como actualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Salir" diff --git a/l10n/es/files.po b/l10n/es/files.po index 2eb801f2e5..380c72da99 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -5,14 +5,15 @@ # Translators: # Art O. Pal , 2013 # ggam , 2013 +# mikelanabitarte , 2013 # saskarip , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 10:40+0000\n" +"Last-Translator: mikelanabitarte \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,7 +235,7 @@ msgstr "{count} archivos" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s no se pudo renombrar" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -332,19 +333,19 @@ msgstr "Escaneo actual" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "carpeta" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "carpetas" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "archivo" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "archivos" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index dccd78a9b9..ad8f78863b 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -5,6 +5,7 @@ # Translators: # asaez , 2013 # gmoriello , 2013 +# mikelanabitarte , 2013 # saskarip , 2013 # William Díaz , 2013 # xhiena , 2013 @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -64,17 +65,18 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "El módulo OpenSSL de PHP no está instalado." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 8e97430bde..02e039f73e 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index efc3a8a773..6b28c9cbe1 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Enviar" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Descargar" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Subir" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "No hay vista previa disponible para" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index a126a31282..f8f5c9acdf 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 0d3bd8062a..e0ddadc6f7 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicaciones" msgid "Admin" msgstr "Administración" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 08f7231243..81c4fc1fab 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -169,15 +169,15 @@ msgstr "Error al crear usuario" msgid "A valid password must be provided" msgstr "Se debe usar una contraseña valida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Castellano" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -186,36 +186,36 @@ msgid "" " webserver document root." msgstr "Su directorio de datos y sus archivos son probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Le recomendamos encarecidamente que configure su servidor web de manera que el directorio de datos no esté accesible, o mueva el directorio de datos fuera del documento raíz de su servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Advertencia de configuración" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulo 'fileinfo' perdido" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El modulo PHP 'fileinfo' no se encuentra. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección del mime-type" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -223,11 +223,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Este servidor ownCloud no puede establecer la configuración regional a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos. Le recomendamos que instale los paquetes requeridos en su sistema para soportar el %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "La conexion a internet no esta funcionando" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -237,102 +237,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud no tiene conexion de internet. Esto quiere decir que algunas caracteristicas como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o la instalacion de apps de terceros no funcionarán. Es posible que no pueda acceder remotamente a los archivos ni enviar notificaciones por correo. Sugerimos habilitar la conexión a Internet para este servidor si quiere disfrutar de todas las características de ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php es un sistema webcron registrado. Llama a la página cron.php en la raíz de owncloud una vez por minuto sobre http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Utilizar el servicio cron del sistema. Llama al archivo cron.php en la carpeta de owncloud a través de un cronjob del sistema una vez por minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos al público con enlaces" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir elementos ya compartidos con ellos mismos" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con todo el mundo" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Fuerza la conexión de los clientes a ownCloud con una conexión cifrada." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Por favor, conecte esta instancia de ownCloud vía HTTPS para activar o desactivar la aplicación de SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registro" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Más" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versión" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nombre a mostrar" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Escriba una dirección de correo electrónico para restablecer la contraseña" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ayúdnos a traducir" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index ce367128e9..cedba92b30 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index cc2f0a7baf..39ffb3e499 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Huésped de la base de datos" msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponible. Obtené más información sobre cómo actualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Cerrar la sesión" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index a3af3bb938..3a003320ca 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "archivo" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "archivos" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index 495c0b33b2..f52bef53bf 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -63,14 +63,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "El módulo OpenSSL para PHP no está instalado." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Pedile al administrador del servidor que instale el módulo. Por ahora la App de encriptación está deshabilitada." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 8a975613d9..e768d7eed3 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 471217e1af..6894fbe0dc 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Enviar" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Descargar" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Subir" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 4d829f183c..3c0f24f477 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index c4471cd9ad..5b8d4b7e5c 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicaciones" msgid "Admin" msgstr "Administración" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index d1a176b6ae..e875c2e210 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Error creando usuario" msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Castellano (Argentina)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no está funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no esté accesible, o que muevas el directorio de datos afuera del directorio raíz de tu servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Alerta de Configuración" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, comprobá nuevamente la guía de instalación." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "El módulo 'fileinfo' no existe" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "\"Locale\" no está funcionando" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "El servidor ownCloud no puede asignar la localización de sistema a %s. Esto puede provocar que existan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "La conexión a Internet no esta funcionando. " -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios, tales como montar dispositivos externos, notificación de actualizaciones o instalar Apps de otros desarrolladores no funcionan. Puede ser que tampoco puedas acceder a archivos remotos y mandar e-mails. Te sugerimos que actives una conexión a internet si querés estas características en ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Ejecutá una tarea con cada pagina cargada." -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php está registrado como un servicio webcron. Llamar la página cron.php en la raíz de ownCloud una vez al minuto sobre http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Usar el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Habilitar Share API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la Share API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir enlaces públicos" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir Re-Compartir" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permite a los usuarios volver a compartir items que les fueron compartidos" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera." -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los de sus mismos grupos" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Forzar a los clientes conectar a ownCloud vía conexión encriptada." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Por favor conectate a este ownCloud vía HTTPS para habilitar o deshabilitar el SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Más" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versión" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usás %s de los %s disponibles" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Tu contraseña fue cambiada" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nombre a mostrar" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "e-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Escribí una dirección de e-mail para restablecer la contraseña" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usá esta dirección para conectarte con ownCloud en tu Administrador de Archivos" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index c9993c507c..9995bb00e3 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index d4530b8597..acc33071f5 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Andmebaasi host" msgid "Finish setup" msgstr "Lõpeta seadistamine" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s on saadaval. Vaata lähemalt kuidas uuendada." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Logi välja" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 64f296c009..a49f7b08e9 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fail" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "faili" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index fb7e4c9a5d..f7d2550070 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -64,13 +64,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 1d7ae7c892..9731627b6f 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 31bca9da83..adec3c3a7c 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Parool" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Saada" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Lae alla" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 892915554b..7979e6c859 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 1da12092f6..b94a859dde 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -43,6 +43,10 @@ msgstr "Rakendused" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 81c2b2ef8f..ce17bbe62b 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Viga kasutaja loomisel" msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Eesti" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Turvahoiatus" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, mida pakub ownCloud, ei toimi. Soovitame tungivalt veebiserveri seadistust selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi-juurkataloogist mujale." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Paigalduse hoiatus" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Palun tutvu veelkord paigalduse juhenditega." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Moodul 'fileinfo' puudub" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokalisatsioon ei toimi" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "ownCloud server ei suuda seadistada süsteemi lokalisatsiooni %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internetiühendus ei toimi" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "ownCloud serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Käivita toiming lehe laadimisel" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php on registreeritud webcron teenusena. Lae cron.php lehte owncloud veebikataloogist iga minut üle http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Kasuta süsteemi cron teenust. Käivita cron.php fail owncloud veebikataloogist kasutades süsteemi crontab toimingut iga minut." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Jagamine" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Luba Share API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada Share API-t" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Luba lingid" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Sunnib kliente ownCloudiga ühenduma krüpteeritult." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Palun ühendu selle ownCloud instantsiga üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logi" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Rohkem" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Vähem" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versioon" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Kasutad %s saadavalolevast %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parool" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Näidatav nimi" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-post" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Keel" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Kasuta seda aadressi ühendamaks oma ownCloudi failihalduriga" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 721492757d..0132bb9f21 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 66d708a35c..d0fa2e927a 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Datubasearen hostalaria" msgid "Finish setup" msgstr "Bukatu konfigurazioa" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Saioa bukatu" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 1191fbb6a1..602f7d9cf7 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fitxategia" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fitxategiak" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index cb8745533e..cc5d993d62 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 10:50+0000\n" -"Last-Translator: Piarres Beobide \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,13 +64,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "OpenSSL PHP modulua ez dago instalaturik." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 83c35071be..7f6e3446bb 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 10:20+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index a124307bdd..40daad6272 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Pasahitza" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Bidali" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%sk zurekin %s karpeta elkarbanatu du" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Igo" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 07b8b529a0..db50963306 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 20d0c8ad1f..c5a88da9a9 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplikazioak" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 33078d404e..d3c3df48a0 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 10:10+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Errore bat egon da erabiltzailea sortzean" msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Euskera" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Segurtasun abisua" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Konfiguratu Abisuak" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Mesedez begiratu instalazio gidak." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "'fileinfo' Modulua falta da" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokala ez dabil" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "OwnClud zerbitzari honek ezin du sistemaren lokala %s-ra ezarri. Honek fitxategien izenetan karaktere batzuekin arazoak egon daitekeela esan nahi du. Aholkatzen dizugu zure sistema %s lokalea onartzeko beharrezkoak diren paketeak instalatzea." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Interneteko konexioak ez du funtzionatzen" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "ownCloud zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Exekutatu zeregin bat orri karga bakoitzean" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Partekatzea" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Gaitu Elkarbanatze APIa" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Bezeroak konexio enkriptatu baten bidez ownCloud-era konektatzera behartzen du." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Mesedez konektatu ownCloud honetara HTTPS bidez SSL-ren beharra gaitu edo ezgaitzeko" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Gehiago" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %setatik" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Zere pasahitza aldatu da" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Bistaratze Izena" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-posta" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 3667cefd98..3f085ad089 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 771e678b89..523c31b84f 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "هاست پایگاه داده" msgid "Finish setup" msgstr "اتمام نصب" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "خروج" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index ac33ee9856..67d0a68e1b 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "پرونده" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "پرونده ها" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 3a69ee6de2..5435dd5782 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index fccf5d2419..e336407ad2 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index b103f6b303..02940cf74f 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "گذرواژه" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "ثبت" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "دانلود" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 62c9d22cc4..51f44a8d33 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index a887236f27..90e95940af 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr " برنامه ها" msgid "Admin" msgstr "مدیر" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 6bf568653e..c2575baf27 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "خطا در ایجاد کاربر" msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "اخطار امنیتی" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "احتمالاً فهرست و فایلهای شما از طریق اینترنت قابل دسترسی هستند. فایل با فرمت .htaccess که ownCloud اراده کرده است دیگر کار نمی کند. ما قویاً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که فهرست اطلاعات شما غیر قابل دسترسی باشند یا فهرست اطلاعات را به خارج از ریشه ی اصلی وب سرور انتقال دهید." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "هشدار راه اندازی" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "ماژول 'fileinfo' از کار افتاده" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "این سرور ownCloud نمی تواند سیستم محلی را بر روی %s تنظیم کند.این به این معنی ست که ممکن است با کاراکترهای خاصی در نام فایل ها مشکل داشته باشد.ما اکیداً نصب کردن بسته های لازم را بر روی سیستم خودتان برای پشتیبانی %s توصیه می کنیم." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "اتصال اینترنت کار نمی کند" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "این سرور OwnCloud ارتباط اینترنتی ندارد.این بدین معناست که بعضی از خصوصیات نظیر خارج کردن منبع ذخیره ی خارجی، اطلاعات در مورد بروزرسانی ها یا نصب برنامه های نوع 3ام کار نمی کنند.دسترسی به فایل ها از راه دور و ارسال آگاه سازی ایمیل ها ممکن است همچنان کار نکنند.اگرشما همه ی خصوصیات OwnCloud می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "اشتراک گذاری" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "فعال کردن API اشتراک گذاری" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "اجازه ی لینک ها" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "مجوز اشتراک گذاری مجدد" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "اجازه به کابران برای اشتراک گذاری با همه" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "امنیت" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "وادار کردن مشتریان برای ارتباط با ownCloud از طریق رمزگذاری ارتباط" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "نسخه" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "شما استفاده کردید از %s از میزان در دسترس %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "گذرواژه" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "رمز عبور شما تغییر یافت" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "نام نمایشی" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "ایمیل" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "زبان" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 79b0cc9013..db35141c3b 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index c2b656bbd0..61bc0ed86b 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Tietokantapalvelin" msgid "Finish setup" msgstr "Viimeistele asennus" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Kirjaudu ulos" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 627813484f..c6016a80ec 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "tiedosto" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "tiedostoa" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 5d7d982bed..0f8f958a2d 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 17:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP-moduulia OpenSSL ei ole asennettu." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 9b841ddf19..88c4c2a181 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index afe8ef68fc..97f099a1d3 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Salasana" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Lähetä" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Lataa" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 336dab766b..e61bb45791 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index e5199b589c..90c1cccb43 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Sovellukset" msgid "Admin" msgstr "Ylläpitäjä" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 1883dc1a53..8ff86a7e78 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Virhe käyttäjää luotaessa" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "_kielen_nimi_" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Turvallisuusvaroitus" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Lue tarkasti asennusohjeet." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Moduuli 'fileinfo' puuttuu" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internet-yhteys ei toimi" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita käyttäen linkkejä" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Pakottaa salaamaan ownCloudiin kohdistuvat yhteydet." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Loki" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Enemmän" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versio" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Käytössäsi on %s/%s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Salasana" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Näyttönimi" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Sähköpostiosoite" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Kieli" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 6f4307bce4..68f73adf61 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 3bf7f5894d..e608363f0f 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: Adalberto Rodrigues \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -577,12 +577,12 @@ msgstr "Serveur de la base de données" msgid "Finish setup" msgstr "Terminer l'installation" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Se déconnecter" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index dc37ed2a9a..d8d018fdd6 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -340,11 +340,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fichier" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fichiers" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 8d677147a8..a7a5e7a6fe 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 19:50+0000\n" -"Last-Translator: Adalberto Rodrigues \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,14 +66,15 @@ msgid "" msgstr "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Le module OpenSSL de PHP n'est pas installé." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index e777196f0d..1c242b645b 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 9782ed9896..7cc6c36f4c 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Mot de passe" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Envoyer" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Télécharger" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 33f304bbd2..eef854f4d2 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index eec8122a8a..dce6cf2ab5 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Applications" msgid "Admin" msgstr "Administration" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index cbabb0e44f..bf159feeed 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -168,15 +168,15 @@ msgstr "Erreur lors de la création de l'utilisateur" msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Français" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avertissement de sécurité" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -185,36 +185,36 @@ msgid "" " webserver document root." msgstr "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de déplacer le dossier data en dehors du dossier racine des documents du serveur web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Avertissement, problème de configuration" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez vous référer au guide d'installation." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' manquant" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Localisation non fonctionnelle" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -222,11 +222,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Ce serveur ownCloud ne peut pas ajuster la localisation du système en %s. Cela signifie qu'il pourra y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est vivement recommandé d'installer les paquets requis pour le support de %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "La connexion internet ne fonctionne pas" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -236,102 +236,102 @@ msgid "" " of ownCloud." msgstr "Ce serveur ownCloud ne peut pas se connecter à internet. Cela signifie que certaines fonctionnalités, telles que l'utilisation de supports de stockage distants, les notifications de mises à jour, ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne marcheront pas non plus. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez utiliser toutes les fonctionnalités offertes par ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php est enregistré en tant que service webcron. Veuillez appeler la page cron.php située à la racine du serveur ownCoud via http toute les minutes." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Utilise le service cron du système. Appelle le fichier cron.php du répertoire owncloud toutes les minutes grâce à une tâche cron du système." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Forcer les clients à se connecter à Owncloud via une connexion chiffrée." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Merci de vous connecter à cette instance Owncloud en HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Plus" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Moins" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Vous avez utilisé %s des %s disponibles" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Mot de passe" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Votre mot de passe a été changé" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Impossible de changer votre mot de passe" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Mot de passe actuel" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nouveau mot de passe" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nom affiché" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Adresse mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Langue" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index bc72b0c544..8b30b6c07d 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index cc94a39a5a..e8bd707eb4 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Servidor da base de datos" msgid "Finish setup" msgstr "Rematar a configuración" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está dispoñíbel. Obteña máis información sobre como actualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Desconectar" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index fc9b4bb319..da23f92149 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ficheiro" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ficheiros" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 20c1755a55..45a139836f 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 07:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +65,15 @@ msgid "" msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "O módulo PHP OpenSSL non está instalado." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Pregúntelle ao administrador do servidor pola instalación do módulo. Polo de agora o aplicativo de cifrado foi desactivado." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 432452af01..410acbd581 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 31b0ffcc4f..14d04a7ec2 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contrasinal" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Enviar" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Descargar" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Enviar" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 5946c079b3..4eff86ac19 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 3083cb7484..e62d4879cd 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicativos" msgid "Admin" msgstr "Administración" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index e516510d99..00193b8e68 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Produciuse un erro ao crear o usuario" msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Galego" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Aviso de seguranza" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerímoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesíbel ou mova o cartafol de datos fora do directorio raíz de datos do servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Configurar os avisos" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Volva comprobar as guías de instalación" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Non se atopou o módulo «fileinfo»" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "A configuración rexional non funciona" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Este servidor ownCloud non pode estabelecer a configuración rexional do sistema a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que inste os paquetes necesarios no sistema para aceptar o %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "A conexión á Internet non funciona" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades de ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Executar unha tarefa con cada páxina cargada" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php está rexistrado nun servizo de WebCron. Chame á página cron.php na raíz ownCloud unha vez por minuto a través de HTTP." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Use o servizo de sistema cron. Chame ao ficheiro cron.php no cartafol owncloud a través dun sistema de cronjob unha vez por minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartindo" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activar o API para compartir" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir que os aplicativos empreguen o API para compartir" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir ligazóns" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir que os usuarios compartan elementos ao público con ligazóns" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir compartir" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permitir que os usuarios compartan de novo os elementos compartidos con eles" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir que os usuarios compartan con calquera" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os usuarios compartan só cos usuarios dos seus grupos" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Forzar que os clientes se conecten a ownCloud empregando unha conexión cifrada" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Conectese a esta instancia ownCloud empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Máis" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versión" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ten en uso %s do total dispoñíbel de %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Non é posíbel cambiar o seu contrasinal" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Amosar o nome" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Correo" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Escriba un enderezo de correo para activar o contrasinal de recuperación" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 9a604a78fd..ecdd18174c 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index ded1f94c94..f2f73c62a5 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "שרת בסיס נתונים" msgid "Finish setup" msgstr "סיום התקנה" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s זמינה להורדה. ניתן ללחוץ כדי לקבל מידע נוסף כיצד לעדכן." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "התנתקות" diff --git a/l10n/he/files.po b/l10n/he/files.po index 57272b92b1..dcc3698284 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "קובץ" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "קבצים" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index a7ff7d9e48..8b805ef221 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index f030da5198..9e418a262f 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index ec661346bb..4e039d7668 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "סיסמא" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "שליחה" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "הורדה" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "העלאה" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 44fe5fb151..83f118e94f 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 35ef648b05..1294bfdc82 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "יישומים" msgid "Admin" msgstr "מנהל" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 296c78ce3a..0be65ca663 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "יצירת המשתמש נכשלה" msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "עברית" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "אזהרת אבטחה" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "יתכן שתיקיית הנתונים והקבצים שלך נגישים דרך האינטרנט. קובץ ה־‎.htaccess שמסופק על ידי ownCloud כנראה אינו עובד. אנו ממליצים בחום להגדיר את שרת האינטרנט שלך בדרך שבה תיקיית הנתונים לא תהיה זמינה עוד או להעביר את תיקיית הנתונים מחוץ לספריית העל של שרת האינטרנט." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "שגיאת הגדרה" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "נא לעיין שוב במדריכי ההתקנה." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "המודול „fileinfo“ חסר" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "החיבור לאינטרנט אינו פעיל" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "יש להפעיל משימה אחת עם כל עמוד שנטען" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "שיתוף" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "הפעלת API השיתוף" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "לאפשר ליישום להשתמש ב־API השיתוף" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "לאפשר קישורים" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "לאפשר למשתמשים לשתף פריטים " -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "לאפשר שיתוף מחדש" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "לאפשר למשתמשים לשתף הלאה פריטים ששותפו אתם" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "לאפשר למשתמשים לשתף עם כל אחד" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "יומן" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "יותר" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "פחות" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "גרסא" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "השתמשת ב־%s מתוך %s הזמינים לך" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "סיסמא" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "שם תצוגה" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "דואר אלקטרוני" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "פה" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים." diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 922993d60f..c21103fa52 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 9a7e059009..18d44932d4 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "" msgid "Finish setup" msgstr "सेटअप समाप्त करे" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "लोग आउट" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index b0ada4fa9a..ee4f01e525 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 72318884cf..94ad25dcd1 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 61feccf728..374cd74847 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "पासवर्ड" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index b4c3ea47a1..76cc09e1fa 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Apps" msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index ed464d5b38..f45e4c2c9f 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Poslužitelj baze podataka" msgid "Finish setup" msgstr "Završi postavljanje" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odjava" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index a9953a298e..09e0983ab9 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "datoteka" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "datoteke" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 7e4a7e15c9..41ffd91c1b 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index edbee1262c..b4828166a4 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 2396120361..76292dea41 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Lozinka" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Pošalji" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 90551c10cf..90f0361d5b 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index eeaf3e1ffb..de98c266a5 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplikacije" msgid "Admin" msgstr "Administrator" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 23ae6a018a..ef922746a0 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__ime_jezika__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "više" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jezik" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 2484828800..975d9b9f4d 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 80af11d95d..94736ed98a 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Adatbázis szerver" msgid "Finish setup" msgstr "A beállítások befejezése" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s rendelkezésre áll. További információ a frissítéshez." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Kilépés" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 4e53b2b512..b7bd801ce6 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fájl" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fájlok" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 01aa8396a3..cac07fdabb 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 5199ce0ee7..f2fcf3145e 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index d035812b03..92bcf28631 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Jelszó" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Elküld" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Letöltés" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 2370f65e49..e8ed7eae50 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index f1387d3c8b..3af4a667f3 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Alkalmazások" msgid "Admin" msgstr "Adminsztráció" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 478923a9d7..42cec70d3b 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "A felhasználó nem hozható létre" msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Biztonsági figyelmeztetés" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "A beállítással kapcsolatos figyelmeztetés" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "A 'fileinfo' modul hiányzik" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "A nyelvi lokalizáció nem működik" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Az internet kapcsolat nem működik" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Az ownCloud kiszolgálónak nincs internet kapcsolata. Ez azt jelenti, hogy bizonyos dolgok nem fognak működni, pl. külső tárolók csatolása, programfrissítésekről való értesítések, vagy külső fejlesztői modulok telepítése. Lehet, hogy az állományok távolról történő elérése, ill. az email értesítések sem fog működni. Javasoljuk, hogy engedélyezze az internet kapcsolatot a kiszolgáló számára, ha az ownCloud összes szolgáltatását szeretné használni." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Ütemezett feladatok" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg az owncloud könyvtárban levő cron.php állományt http-n keresztül percenként egyszer." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "A rendszer cron szolgáltatásának használata. Hívja meg az owncloud könyvtárban levő cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Megosztás" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "A megosztás API-jának engedélyezése" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Linkek engedélyezése" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "A továbbosztás engedélyezése" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "A felhasználók bárkivel megoszthatják állományaikat" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak az ownCloud szolgáltatáshoz." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Kérjük, hogy HTTPS protokollt használjon, ha be vagy ki akarja kapcsolni a kötelező SSL beállítást." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Több" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Verzió" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "A jelszava megváltozott" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "A megjelenített név" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Az Ön email címe" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Segítsen a fordításban!" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait." diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index bb38514a80..4c3d5edef8 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index a78f199054..cdc4c8604a 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_encryption.po b/l10n/hy/files_encryption.po index 5d98b56d41..aac4b4707b 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index e9a24afac6..1ddc27eaf8 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 64f9515bb8..bf114d281d 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Հաստատել" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 9797a35bee..c47782b0ee 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index f1c31aeae6..07d4691521 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index e98e94e311..7aae4ee9ae 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 4700fe8f4f..95472114c9 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Hospite de base de datos" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Clauder le session" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index ea89463fb8..36862645ff 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 77fce1ace5..3dc0de9950 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index b8392b61ce..d5dd7cf6d5 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 2b34579a53..1140c74f32 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contrasigno" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Submitter" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Discargar" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Incargar" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 1f07f41014..93c82b99f9 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 889a46f0b5..183ac93eea 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Applicationes" msgid "Admin" msgstr "Administration" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f142a501be..9d4272ee3d 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Interlingua" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registro" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Plus" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-posta" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Linguage" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 7da00dfe34..12092d02bc 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 07c64345aa..56590d0037 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Host basis data" msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Keluar" diff --git a/l10n/id/files.po b/l10n/id/files.po index 07c5e82a52..66e49783d9 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "berkas" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "berkas-berkas" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 9ebd58469c..754fd8ebf9 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 0dbe65d468..07a10c8501 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 17d8faaa8b..c0d794fc2d 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Sandi" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Kirim" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s membagikan folder %s dengan Anda" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Unduh" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Unggah" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Tidak ada pratinjau tersedia untuk" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 36cede00b2..20a5b3a585 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 3227625de4..9704b2b5e3 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplikasi" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Pengunduhan ZIP dimatikan." diff --git a/l10n/id/settings.po b/l10n/id/settings.po index e3a215db92..14933d3e95 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "Gagal membuat pengguna" msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Peringatan Keamanan" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Mungkin direktori data dan berkas Anda dapat diakses dari internet. Berkas .htaccess yang disediakan oleh ownCloud tidak berfungsi. Kami sangat menyarankan Anda untuk mengonfigurasi webserver Anda agar direktori data tidak lagi dapat diakses atau pindahkan direktori data ke luar akar dokumen webserver." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Peringatan Persiapan" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Silakan periksa ulang panduan instalasi." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' tidak ada" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Kode pelokalan tidak berfungsi" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Server ownCloud ini tidak dapat menyetel kode pelokalan sistem ke nilai %s. Ini berarti mungkin akan terjadi masalah pada karakter tertentu pada nama berkas. Kami sarankan untuk menginstal paket yang dibutuhkan pada sistem Anda untuk mendukung %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Koneksi internet tidak berfungsi" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "Server ownCloud ini tidak memiliki koneksi internet yang berfungsi. Artinya, beberapa fitur misalnya mengaitkan penyimpanan eksternal, notifikasi tentang pembaruan, atau instalasi aplikasi dari pihak ketiga tidak akan dapat berfungsi. Pengaksesan berkas secara online dan pengiriman email notifikasi mungkin juga tidak dapat berfungsi. Kami sarankan untuk mengaktifkan koneksi internet server ini agar mendapatkan semua fitur ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Jalankan tugas setiap kali halaman dimuat" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php telah terdaftar sebagai layanan webcron. Panggil halaman cron.php pada akar direktori ownCloud tiap menit lewat http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Gunakan layanan cron sistem. Panggil berkas cron.php pada folder ownCloud lewat cronjob sistem tiap menit." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Berbagi" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktifkan API Pembagian" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Izinkan tautan" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Izinkan pembagian ulang" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Paksa klien untuk tersambung ke ownCloud lewat koneksi yang dienkripsi." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Silakan sambungkan ke instalasi ownCloud lewat HTTPS untuk mengaktifkan atau menonaktifkan fitur SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Catat" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Lainnya" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versi" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Anda telah menggunakan %s dari total %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Sandi" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Sandi Anda telah diubah" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Gagal mengubah sandi Anda" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Sandi saat ini" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Sandi baru" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Ubah sandi" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nama Tampilan" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Alamat email Anda" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Masukkan alamat email untuk mengaktifkan pemulihan sandi" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gunakan alamat ini untuk terhubung ke ownCloud Anda pada manajer berkas " diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 5e9053af86..eb02d8be93 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index b20212c84b..8b8af544e1 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Netþjónn gagnagrunns" msgid "Finish setup" msgstr "Virkja uppsetningu" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er til boða. Fáðu meiri upplýsingar um hvernig þú uppfærir." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Útskrá" diff --git a/l10n/is/files.po b/l10n/is/files.po index 34364c612a..22ee1e9edb 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index 25eb7b28e2..4cc867c7a6 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 372ac099ba..479c1a9b4d 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 31a9e2916d..2b241cf732 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Lykilorð" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Senda" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 1bf547e91e..dedcb91b1e 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index d526fd5bbf..6dc7349b74 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Forrit" msgid "Admin" msgstr "Stjórnun" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Slökkt á ZIP niðurhali." diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 2c4fda3cc3..ca29e7aecd 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__nafn_tungumáls__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Öryggis aðvörun" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Meira" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Minna" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Þú hefur notað %s af tiltæku %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lykilorð" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Lykilorði þínu hefur verið breytt" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þínu" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Vísa nafn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Netfang" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 1205d878d9..8dc400a555 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 70fb61139d..8468e03003 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 05:50+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -575,12 +575,12 @@ msgstr "Host del database" msgid "Finish setup" msgstr "Termina la configurazione" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Esci" diff --git a/l10n/it/files.po b/l10n/it/files.po index 535034c72c..b6a6f13cb0 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:00+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -331,19 +331,19 @@ msgstr "Scansione corrente" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "cartella" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "cartelle" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "file" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "file" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index bd0c8201a6..0c1b972a0f 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 06:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +65,15 @@ msgid "" msgstr "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Il modulo PHP OpenSSL non è installato." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Chiedi all'amministratore del server di installare il modulo. Per ora la crittografia è disabilitata." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 6510e57576..5ef791c24c 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 76966a3edc..7583327697 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 06:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Password" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Invia" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Scarica" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Carica" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 0de57665fd..2c97b399f6 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 0c1903975e..c9aa8d1344 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Applicazioni" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 0499861abb..45ffe0cf8c 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Errore durante la creazione dell'utente" msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Italiano" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avviso di sicurezza" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Avviso di configurazione" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulo 'fileinfo' mancante" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale non funzionante" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Questo server ownCloud non può impostare la localizzazione a %s. Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti richiesti sul sistema per supportare %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Concessione Internet non funzionante" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. Anche l'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità di ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php è registrato su un sevizio webcron. Invoca la pagina cron.php nella radice di ownCloud ogni minuto, tramite http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Utilizza il servizio cron di sistema. Invoca il file cron.php nella cartella di ownCloud tramite un job ogni minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere a loro volta elementi condivisi da altri" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Protezione" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Obbliga i client a connettersi a ownCloud tramite una confessione cifrata." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Connettiti a questa istanza di ownCloud tramite HTTPS per abilitare o disabilitare la protezione SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Altro" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Meno" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versione" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Hai utilizzato %s dei %s disponibili" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Password" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nome visualizzato" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Posta elettronica" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Lingua" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 5dd936059e..cd4b84d677 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index a34e09a9c9..4fa5512a6a 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "データベースのホスト名" msgid "Finish setup" msgstr "セットアップを完了します" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "ログアウト" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 2b68a5d305..fe81e37a0a 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ファイル" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ファイル" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 4c03b56548..5d409f27d3 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 15:30+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +65,15 @@ msgid "" msgstr "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHPのモジュール OpenSSLがインストールされていません。" +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "サーバーの管理者にモジュールのインストールを頼んでください。さしあたり暗号化アプリは無効化されました。" +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index a5fd17defa..787934be5f 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index aab66ce20f..7d87fcc69e 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "パスワード" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "送信" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "アップロード" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "プレビューはありません" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 3854c33415..4bc00b073b 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 7fdf42bd6b..019949f4b8 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "アプリ" msgid "Admin" msgstr "管理" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index f08173bacd..201c4c38c0 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -168,15 +168,15 @@ msgstr "ユーザ作成エラー" msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Japanese (日本語)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "セキュリティ警告" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -185,36 +185,36 @@ msgid "" " webserver document root." msgstr "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。 " -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "セットアップ警告" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "インストールガイドをよく確認してください。" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "モジュール 'fileinfo' が見つかりません" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "ロケールが動作していません" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -222,11 +222,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "この ownCloud サーバは、システムロケールを %s に設定できません。これは、ファイル名の特定の文字で問題が発生する可能性があることを意味しています。%s をサポートするために、システムに必要なパッケージをインストールすることを強く推奨します。" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "インターネット接続が動作していません" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -236,102 +236,102 @@ msgid "" " of ownCloud." msgstr "この ownCloud サーバには有効なインターネット接続がありません。これは、外部ストレージのマウント、更新の通知、サードパーティ製アプリのインストール、のようないくつかの機能が動作しないことを意味しています。リモートからファイルにアクセスしたり、通知メールを送信したりすることもできません。全ての機能を利用するためには、このサーバのインターネット接続を有効にすることを推奨します。" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php は webcron サービスに登録されています。owncloud のルートにある cron.php のページを http 経由で1分に1回呼び出して下さい。" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "システムの cron サービスを利用する。システムの cronjob を通して1分に1回 owncloud 内の cron.php ファイルを呼び出して下さい。" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "共有" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "リンクによりアイテムを公開することを許可する" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "ユーザが共有しているアイテムの再共有を許可する" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "ユーザが誰とでも共有することを許可する" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "ユーザにグループ内のユーザとのみ共有を許可する" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "クライアントからownCloudへの接続を常に暗号化する" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "常にSSL接続を有効/無効にするために、HTTPS経由でこの ownCloud に接続して下さい。" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "ログ" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "もっと見る" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "閉じる" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "バージョン" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "現在、%s / %s を利用しています" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "パスワード" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "パスワードを変更しました" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Current password" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新しいパスワードを入力" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "表示名" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "メール" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "※パスワード回復を有効にするにはメールアドレスの入力が必要です" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "言語" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 080a2845f1..386674a3a4 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index c0e4705a3b..bdbe41a8b9 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 3b7fde71cf..30ae56a19d 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index fa40092fd3..8baaaed48f 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "პაროლი" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index ecb28020e5..4fa2845d63 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "შველა" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "პერსონა" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "მომხმარებლები" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "ადმინისტრატორი" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP გადმოწერა გამორთულია" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index b058cbae3e..69cd02d9d2 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "მონაცემთა ბაზის ჰოსტი" msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "გამოსვლა" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 93512471ca..915a2a2ef9 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index a5b3930bdb..39799227c6 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index ec02bbc4eb..ef21a65394 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 8839318824..56a1b27e9c 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "პაროლი" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "გაგზავნა" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "წინასწარი დათვალიერება შეუძლებელია" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 62909f82ce..4fb606d5ec 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index f984197761..6201451b3b 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "აპლიკაციები" msgid "Admin" msgstr "ადმინისტრატორი" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP download–ი გათიშულია" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index f6c1a317ff..995622a2e6 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "შეცდომა მომხმარებლის შექმ msgid "A valid password must be provided" msgstr "უნდა მიუთითოთ არსებული პაროლი" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "უსაფრთხოების გაფრთხილება" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "თქვენი data დირექტორია და ფაილები არის დაშვებადი ინტერნეტიდან. .htaccess ფაილი რომელსაც ownCloud გვთავაზობს არ მუშაობს. ჩვენ გირჩევთ რომ თქვენი ვებსერვერი დააკონფიგურიროთ ისე რომ data დირექტორია არ იყოს დაშვებადი, ან გაიტანოთ data დირექტორია ვებსერვერის document root დირექტორიის გარეთ." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "გაფრთხილება დაყენებისას" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "მოდული 'fileinfo' არ არსებობს" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "ლოკალიზაცია არ მუშაობს" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "თქვენი ownCloud სერვერი ვერ აყენებს %s სისტემურ ენას. ეს გულისხმობს იმას რომ შეიძლება შეიქმნას პრობლემა გარკვეულ სიმბოლოებზე ფაილის სახელებში. ჩვენ გიჩევთ რომ დააინსტალიროთ საჭირო პაკეტები თქვენს სისტემაზე იმისათვის რომ იყოს %s –ის მხარდაჭერა." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "ინტერნეტ კავშირი არ მუშაობს" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "ownCloud სერვერს არ გააჩნია ინტერნეტთან კავშირი. ეს ნიშნავს იმას რომ გარკვეული ფუნქციები როგორიცაა ექსტერნალ საცავების მონტირება, შეტყობინებები განახლების შესახებ ან სხვადასხვა 3rd აპლიკაციების ინსტალაცია არ იმუშავებს. ფაილებთან წვდომა გარე სამყაროდან და შეტყობინების იმეილებიც აგრეთვე არ იმუშავებს. ჩვენ გირჩევთ რომ ჩართოთ ინტერნეტ კავშირი ამ სერვერისთვის იმისათვის რომ გქონდეთ ownCloud–ის ყველა ფუნქცია გააქტიურებული." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron–ი" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php რეგისტრირებულია webcron სერვისად. გაუშვით cron.php გვერდი რომელიც მოთავსებულია owncloud root დირექტორიაში, წუთში ერთხელ http–ით." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "გამოიყენე სისტემური cron სერვისი. გაუშვით cron.php ფაილი owncloud ფოლდერიდან სისტემურ cronjob–ში წუთში ერთხელ." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "გაზიარება" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Share API–ის ჩართვა" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "ლინკების დაშვება" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "გადაზიარების დაშვება" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "ვაიძულოთ მომხმარებლები რომ დაუკავშირდნენ ownCloud დაცული კავშირით (https)." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "გთხოვთ დაუკავშირდეთ ownCloud–ს HTTPS–ით რომ შეძლოთ SSL–ის ჩართვა გამორთვა." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "თქვენი პაროლი შეიცვალა" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "დისპლეის სახელი" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "ენა" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index c69322a81c..6527a313d7 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index ad0441068f..227f1e73e3 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index fa93cd9bc3..2d27aa7fc3 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 1b8144c8b1..308114917b 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 6c8d3c15fd..b4ce4546cc 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "데이터베이스 호스트" msgid "Finish setup" msgstr "설치 완료" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "로그아웃" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 02f2de9ec3..392ebb5e6d 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "파일" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "파일" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index dda825aea3..8fe2f1bc3b 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index b1264f0b78..cc510adbf8 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index d20b8c2b2d..49ab0bf739 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "암호" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "제출" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "다운로드" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "업로드" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 51952ac00b..876dd35ddc 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 68751435d6..7ca98be82a 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "앱" msgid "Admin" msgstr "관리자" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화되었습니다." diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 9f4bc83cf7..c1cdbe64c9 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "사용자 생성 오류" msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "한국어" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "보안 경고" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 것 같습니다. ownCloud에서 제공한 .htaccess 파일이 작동하지 않습니다. 웹 서버를 다시 설정하여 데이터 디렉터리에 접근할 수 없도록 하거나 문서 루트 바깥쪽으로 옮기는 것을 추천합니다." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "설정 경고" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "설치 가이드를 다시 한 번 확인하십시오." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "모듈 'fileinfo'가 없음" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "로캘이 작동하지 않음" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "ownCloud 서버의 시스템 로캘을 %s(으)로 설정할 수 없습니다. 파일 이름에 특정한 글자가 들어가 있는 경우 문제가 발생할 수 있습니다. %s을(를) 지원하기 위해서 시스템에 필요한 패키지를 설치하는 것을 추천합니다." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "인터넷에 연결할 수 없음" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "ownCloud 서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 외부 앱 설치 등이 작동하지 않을 것입니다. 외부에서 파일에 접근하거나, 알림 이메일을 보내지 못할 수도 있습니다. ownCloud의 모든 기능을 사용하려면 이 서버를 인터넷에 연결하는 것을 추천합니다." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "크론" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "개별 페이지를 불러올 때마다 실행" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php가 webcron 서비스에 등록되어 있습니다. HTTP를 통하여 1분마다 ownCloud 루트에서 cron.php 페이지를 불러옵니다." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "시스템 cron 서비스를 사용합니다. 시스템 cronjob을 사용하여 ownCloud 폴더의 cron.php 파일을 1분마다 불러옵니다." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "공유" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "공유 API 사용하기" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "앱에서 공유 API를 사용할 수 있도록 허용" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "링크 허용" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "재공유 허용" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "누구나와 공유할 수 있도록 허용" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "보안" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "클라이언트가 ownCloud에 항상 암호화된 연결로 연결하도록 강제합니다." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "SSL 강제 사용 설정을 변경하려면 ownCloud 인스턴스에 HTTPS로 연결하십시오." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "로그" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "더 중요함" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "버전" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "현재 공간 중 %s/%s을(를) 사용 중입니다" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "암호" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "암호가 변경되었습니다" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "새 암호" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "표시 이름" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "이메일" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "언어" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 987125a79b..0ac6f84821 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 0fd020b445..8b5f204a03 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "هۆستی داتابه‌یس" msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "چوونەدەرەوە" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 429173c238..acb25a868e 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 9dba4bd2e2..0adc093d2f 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 76ec41b264..4d8c6bf4df 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "ناردن" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "داگرتن" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index aa153b7222..a8848cb116 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index b51349ac44..756f78fbb3 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "به‌رنامه‌كان" msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 01cd612096..ea96d59ab2 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index f5877e6127..bc07ba63a5 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 537f0cfaa3..28b333e1ce 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Michel Weimerskirch , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"Last-Translator: Michel Weimerskirch \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "Den/D' %s huet »%s« mat dir gedeelt" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Typ vun der Kategorie net uginn." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -33,24 +34,24 @@ msgstr "Keng Kategorie fir bäizesetzen?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Dës Kategorie existéiert schon: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Typ vum Objet net uginn." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID net uginn." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Feeler beim dobäisetze vun %s bei d'Favoritten." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -59,19 +60,19 @@ msgstr "Keng Kategorien ausgewielt fir ze läschen." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Feeler beim läsche vun %s aus de Favoritten." #: js/config.php:32 msgid "Sunday" -msgstr "Sonndes" +msgstr "Sonndeg" #: js/config.php:33 msgid "Monday" -msgstr "Méindes" +msgstr "Méindeg" #: js/config.php:34 msgid "Tuesday" -msgstr "Dënschdes" +msgstr "Dënschdeg" #: js/config.php:35 msgid "Wednesday" @@ -79,15 +80,15 @@ msgstr "Mëttwoch" #: js/config.php:36 msgid "Thursday" -msgstr "Donneschdes" +msgstr "Donneschdeg" #: js/config.php:37 msgid "Friday" -msgstr "Freides" +msgstr "Freideg" #: js/config.php:38 msgid "Saturday" -msgstr "Samschdes" +msgstr "Samschdeg" #: js/config.php:43 msgid "January" @@ -143,55 +144,55 @@ msgstr "Astellungen" #: js/js.js:721 msgid "seconds ago" -msgstr "" +msgstr "Sekonnen hir" #: js/js.js:722 msgid "1 minute ago" -msgstr "" +msgstr "1 Minutt hir" #: js/js.js:723 msgid "{minutes} minutes ago" -msgstr "" +msgstr "virun {minutes} Minutten" #: js/js.js:724 msgid "1 hour ago" -msgstr "vrun 1 Stonn" +msgstr "virun 1 Stonn" #: js/js.js:725 msgid "{hours} hours ago" -msgstr "vru {hours} Stonnen" +msgstr "virun {hours} Stonnen" #: js/js.js:726 msgid "today" -msgstr "" +msgstr "haut" #: js/js.js:727 msgid "yesterday" -msgstr "" +msgstr "gëschter" #: js/js.js:728 msgid "{days} days ago" -msgstr "" +msgstr "virun {days} Deeg" #: js/js.js:729 msgid "last month" -msgstr "Läschte Mount" +msgstr "leschte Mount" #: js/js.js:730 msgid "{months} months ago" -msgstr "vru {months} Méint" +msgstr "virun {months} Méint" #: js/js.js:731 msgid "months ago" -msgstr "Méint hier" +msgstr "Méint hir" #: js/js.js:732 msgid "last year" -msgstr "Läscht Joer" +msgstr "Lescht Joer" #: js/js.js:733 msgid "years ago" -msgstr "Joren hier" +msgstr "Joren hir" #: js/oc-dialogs.js:117 msgid "Choose" @@ -203,7 +204,7 @@ msgstr "Ofbriechen" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Feeler beim Luede vun der Virlag fir d'Fichiers-Selektioun" #: js/oc-dialogs.js:164 msgid "Yes" @@ -220,7 +221,7 @@ msgstr "OK" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Den Typ vum Object ass net uginn." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -228,19 +229,19 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 #: js/share.js:630 msgid "Error" -msgstr "Fehler" +msgstr "Feeler" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Den Numm vun der App ass net uginn." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "De benéidegte Fichier {file} ass net installéiert!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Gedeelt" #: js/share.js:90 msgid "Share" @@ -248,35 +249,35 @@ msgstr "Deelen" #: js/share.js:125 js/share.js:658 msgid "Error while sharing" -msgstr "" +msgstr "Feeler beim Deelen" #: js/share.js:136 msgid "Error while unsharing" -msgstr "" +msgstr "Feeler beim Annuléiere vum Deelen" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "" +msgstr "Feeler beim Ännere vun de Rechter" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Gedeelt mat dir an der Grupp {group} vum {owner}" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Gedeelt mat dir vum {owner}" #: js/share.js:172 msgid "Share with" -msgstr "" +msgstr "Deele mat" #: js/share.js:177 msgid "Share with link" -msgstr "" +msgstr "Mat Link deelen" #: js/share.js:180 msgid "Password protect" -msgstr "" +msgstr "Passwuertgeschützt" #: js/share.js:182 templates/installation.php:54 templates/login.php:26 msgid "Password" @@ -284,39 +285,39 @@ msgstr "Passwuert" #: js/share.js:186 msgid "Allow Public Upload" -msgstr "" +msgstr "Ëffentlechen Upload erlaaben" #: js/share.js:189 msgid "Email link to person" -msgstr "" +msgstr "Link enger Persoun mailen" #: js/share.js:190 msgid "Send" -msgstr "" +msgstr "Schécken" #: js/share.js:195 msgid "Set expiration date" -msgstr "" +msgstr "Verfallsdatum setzen" #: js/share.js:196 msgid "Expiration date" -msgstr "" +msgstr "Verfallsdatum" #: js/share.js:228 msgid "Share via email:" -msgstr "" +msgstr "Via E-Mail deelen:" #: js/share.js:230 msgid "No people found" -msgstr "" +msgstr "Keng Persoune fonnt" #: js/share.js:268 msgid "Resharing is not allowed" -msgstr "" +msgstr "Weiderdeelen ass net erlaabt" #: js/share.js:304 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Gedeelt an {item} mat {user}" #: js/share.js:325 msgid "Unshare" @@ -324,11 +325,11 @@ msgstr "Net méi deelen" #: js/share.js:337 msgid "can edit" -msgstr "" +msgstr "kann änneren" #: js/share.js:339 msgid "access control" -msgstr "" +msgstr "Zougrëffskontroll" #: js/share.js:342 msgid "create" @@ -336,7 +337,7 @@ msgstr "erstellen" #: js/share.js:345 msgid "update" -msgstr "" +msgstr "aktualiséieren" #: js/share.js:348 msgid "delete" @@ -348,57 +349,57 @@ msgstr "deelen" #: js/share.js:385 js/share.js:605 msgid "Password protected" -msgstr "" +msgstr "Passwuertgeschützt" #: js/share.js:618 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Feeler beim Läsche vum Verfallsdatum" #: js/share.js:630 msgid "Error setting expiration date" -msgstr "" +msgstr "Feeler beim Setze vum Verfallsdatum" #: js/share.js:645 msgid "Sending ..." -msgstr "" +msgstr "Gëtt geschéckt..." #: js/share.js:656 msgid "Email sent" -msgstr "" +msgstr "Email geschéckt" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Den Update war net erfollegräich. Mell dëse Problem w.e.gl derownCloud-Community." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet." #: lostpassword/controller.php:60 msgid "ownCloud password reset" -msgstr "ownCloud Passwuert reset" +msgstr "Passwuert-Zrécksetzung vun der ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Benotz folgende Link fir däi Passwuert ze reseten: {link}" +msgstr "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}" #: lostpassword/templates/lostpassword.php:4 msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "De Link fir d'Passwuert zréckzesetzen gouf un deng E-Mail-Adress geschéckt.
Falls du d'Mail net an den nächste Minutte kriss, kuck w.e.gl. an dengem Spam-Dossier.
Wann do och keng Mail ass, fro w.e.gl. däin Adminstrateur." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Ufro feelfeschloen!
Hues du séchergestallt dass deng Email respektiv däi Benotzernumm korrekt sinn?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt." +msgstr "Du kriss e Link fir däi Passwuert zréckzesetze via Email geschéckt." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 @@ -411,23 +412,23 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Deng Fichiere si verschlësselt. Falls du de Recuperatiouns-Schlëssel net aktivéiert hues, gëtt et keng Méiglechkeet nees un deng Daten ze komme wann däi Passwuert muss zréckgesat ginn. Falls du net sécher bass wat s de maache soll, kontaktéier w.e.gl däin Administrateur bevir s de weidermëss. Wëlls de wierklech weidermaachen?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Jo, ech wëll mäi Passwuert elo zrécksetzen" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" -msgstr "Reset ufroen" +msgstr "Zrécksetzung ufroen" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Dän Passwuert ass zeréck gesat gin" +msgstr "Däi Passwuert ass zréck gesat ginn" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Op d'Login Säit" +msgstr "Bei d'Login-Säit" #: lostpassword/templates/resetpassword.php:8 msgid "New password" @@ -435,7 +436,7 @@ msgstr "Neit Passwuert" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Passwuert zeréck setzen" +msgstr "Passwuert zréck setzen" #: strings.php:5 msgid "Personal" @@ -447,7 +448,7 @@ msgstr "Benotzer" #: strings.php:7 msgid "Apps" -msgstr "Applicatiounen" +msgstr "Applikatiounen" #: strings.php:8 msgid "Admin" @@ -459,7 +460,7 @@ msgstr "Hëllef" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Access net erlaabt" +msgstr "Zougrëff net erlaabt" #: templates/404.php:12 msgid "Cloud not found" @@ -474,11 +475,11 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hallo,\n\nech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.\nKucken: %s\n\nE schéine Bonjour!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "Web Servicer ënnert denger Kontroll" +msgstr "Web-Servicer ënnert denger Kontroll" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -491,44 +492,44 @@ msgstr "Dobäisetzen" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Sécherheets Warnung" +msgstr "Sécherheets-Warnung" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Deng PHP-Versioun ass verwonnbar duerch d'NULL-Byte-Attack (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Aktualiséier w.e.gl deng PHP-Installatioun fir ownCloud sécher benotzen ze kënnen." #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Et ass kee sécheren Zoufallsgenerator verfügbar. Aktivéier w.e.gl d'OpenSSL-Erweiderung vu PHP." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Ouni e sécheren Zoufallsgenerator kann en Ugräifer d'Passwuert-Zrécksetzungs-Schlësselen viraussoen an en Account iwwerhuelen." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Däin Daten-Dossier an deng Fichieren si wahrscheinlech iwwert den Internet accessibel well den .htaccess-Fichier net funktionnéiert." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Kuck w.e.gl. an der Dokumentatioun fir Informatiounen iwwert eng uerdentlech Konfiguratioun vum Server." #: templates/installation.php:44 msgid "Create an admin account" -msgstr "En Admin Account uleeën" +msgstr "En Admin-Account uleeën" #: templates/installation.php:62 msgid "Advanced" @@ -536,11 +537,11 @@ msgstr "Avancéiert" #: templates/installation.php:64 msgid "Data folder" -msgstr "Daten Dossier" +msgstr "Daten-Dossier" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Datebank konfiguréieren" +msgstr "D'Datebank konfiguréieren" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 @@ -550,11 +551,11 @@ msgstr "wärt benotzt ginn" #: templates/installation.php:137 msgid "Database user" -msgstr "Datebank Benotzer" +msgstr "Datebank-Benotzer" #: templates/installation.php:144 msgid "Database password" -msgstr "Datebank Passwuert" +msgstr "Datebank-Passwuert" #: templates/installation.php:149 msgid "Database name" @@ -562,38 +563,38 @@ msgstr "Datebank Numm" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Datebank Tabelle-Gréisst" +msgstr "Tabelle-Plaz vun der Datebank" #: templates/installation.php:166 msgid "Database host" -msgstr "Datebank Server" +msgstr "Datebank-Server" #: templates/installation.php:172 msgid "Finish setup" msgstr "Installatioun ofschléissen" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s ass verfügbar. Kréi méi Informatiounen doriwwer wéi d'Aktualiséierung ofleeft." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" -msgstr "Ausloggen" +msgstr "Ofmellen" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Automatesch Umeldung ofgeleent!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Falls du däi Passwuert net viru kuerzem geännert hues, kéint däin Account kompromittéiert sinn!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Änner w.e.gl däi Passwuert fir däin Account nees ofzesécheren." #: templates/login.php:34 msgid "Lost your password?" @@ -605,18 +606,18 @@ msgstr "verhalen" #: templates/login.php:41 msgid "Log in" -msgstr "Log dech an" +msgstr "Umellen" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "" +msgstr "Alternativ Umeldungen" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" -msgstr "" +msgstr "Hallo,

ech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.
Kucken!

E schéine Bonjour!" #: templates/part.pagenavi.php:3 msgid "prev" @@ -629,4 +630,4 @@ msgstr "weider" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud gëtt op d'Versioun %s aktualiséiert, dat kéint e Moment daueren." diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 0a60428d1e..9b25c288eb 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 19:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "Datei" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 4f3830922d..cecd9c3343 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index c27c1ab1b0..24e445eeca 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 6aec99c9b4..38eb47a8fb 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passwuert" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Fortschécken" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Download" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 97285009fd..6c22764330 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 19:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 7660f96f37..58acc8cbc9 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Michel Weimerskirch , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -35,12 +36,16 @@ msgstr "Benotzer" #: app.php:409 msgid "Apps" -msgstr "Applicatiounen" +msgstr "Applikatiounen" #: app.php:417 msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" @@ -187,11 +192,11 @@ msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "" +msgstr "Sekonnen hir" #: template.php:114 msgid "1 minute ago" -msgstr "" +msgstr "1 Minutt hir" #: template.php:115 #, php-format @@ -209,11 +214,11 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "" +msgstr "haut" #: template.php:119 msgid "yesterday" -msgstr "" +msgstr "gëschter" #: template.php:120 #, php-format diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 1ec6db719b..7a8b99829c 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 19:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sécherheets Warnung" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Méi" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 1c9cc8bf65..219f5cf307 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 19:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 6a6cc42aa4..b5f9d66468 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Duomenų bazės serveris" msgid "Finish setup" msgstr "Baigti diegimą" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Atsijungti" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index bf2758a327..17e4817de6 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "failas" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "failai" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index d3313e032e..a17364ca8e 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index b5bdde3497..28437191ca 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 8f4d038b5c..07eee4f146 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Slaptažodis" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Išsaugoti" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s pasidalino su jumis %s aplanku" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Peržiūra nėra galima" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 0013c8d571..76ee3a80b6 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index d93ea778f2..51e72311b5 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Programos" msgid "Admin" msgstr "Administravimas" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index e73e68dd50..770dc44c77 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Kalba" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Saugumo pranešimas" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Jūsų duomenų aplankalas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebūtų pasiekiami per internetą, arba persikelti juos kitur." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Dalijimasis" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Daugiau" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Jūsų slaptažodis buvo pakeistas" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "El. Paštas" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Kalba" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 465a5efe89..33f1695bc8 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index b841d9d9d0..6a104f69c3 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Datubāzes serveris" msgid "Finish setup" msgstr "Pabeigt iestatīšanu" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Izrakstīties" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index a4f197e3fc..b291b070d2 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fails" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "faili" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 3eb15d857d..f75bfcbdf5 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index b0b2d44f5b..3766bd9110 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index bb8e9d14e7..d159420f8b 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Parole" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Iesniegt" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ar jums dalījās ar mapi %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 8cea997292..bb34d21680 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 02fcb9aed7..56ef8b5899 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Lietotnes" msgid "Admin" msgstr "Administratori" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index d2d55971cf..ee84741e69 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "Kļūda, veidojot lietotāju" msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__valodas_nosaukums__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Brīdinājums par drošību" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Jūsu datu direktorija un datnes visdrīzāk ir pieejamas no interneta. ownCloud nodrošinātā .htaccess datne nedarbojas. Mēs iesakām konfigurēt serveri tā, lai datu direktorija vairs nebūtu pieejama, vai arī pārvietojiet datu direktoriju ārpus tīmekļa servera dokumentu saknes." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Iestatīšanas brīdinājums" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Trūkst modulis “fileinfo”" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokāle nestrādā" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Šis ownCloud serveris nevar iestatīt sistēmas lokāli uz %s. Tas nozīmē, ka varētu būt problēmas ar noteiktām rakstzīmēm datņu nosaukumos. Mēs iesakām instalēt vajadzīgās pakotnes savā sistēmā %s atbalstam." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Interneta savienojums nedarbojas" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "Šim ownCloud serverim nav strādājoša interneta savienojuma. Tas nozīmē, ka dažas no šīm iespējām, piemēram, ārējas krātuves montēšana, paziņošana par atjauninājumiem vai trešās puses programmatūras instalēšana nestrādā. Varētu nestrādāt attālināta piekļuve pie datnēm un paziņojumu e-pasta vēstuļu sūtīšana. Mēs iesakām aktivēt interneta savienojumu šim serverim, ja vēlaties visas ownCloud iespējas." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php ir reģistrēts webcron servisā. Izsauciet cron.php lapu ownCloud saknē caur http reizi sekundē." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Izmantot sistēmas cron servisu. Izsauciet cron.php datni ownCloud mapē caur sistēmas cornjob reizi minūtē." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Dalīšanās" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktivēt koplietošanas API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Ļauj lietotnēm izmantot koplietošanas API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Atļaut saites" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Atļaut atkārtotu koplietošanu" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Ļaut lietotājiem dalīties ar visiem" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Ļaut lietotājiem dalīties ar lietotājiem to grupās" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Drošība" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Piespiež klientus savienoties ar ownCloud caur šifrētu savienojumu." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Lūdzu, savienojieties ar šo ownCloud pakalpojumu caur HTTPS, lai aktivētu vai deaktivētu SSL piemērošanu." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Vairāk" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versija" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Jūs lietojat %s no pieejamajiem %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parole" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Jūru parole tika nomainīta" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Nevar nomainīt jūsu paroli" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Redzamais vārds" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Jūsu e-pasta adrese" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Valoda" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Izmanto šo adresi, lai, izmantojot datņu pārvaldnieku, savienotos ar savu ownCloud" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 086785332b..4daadb9346 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 8fe352290e..b5ffeba213 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Сервер со база" msgid "Finish setup" msgstr "Заврши го подесувањето" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Одјава" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 4c113c94f5..019c4c1637 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "датотека" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "датотеки" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 8aedce8814..377a5a1046 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 9ce87f58a3..7b4ebc5993 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index a0f85f679e..56415f9de3 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Лозинка" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Прати" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Преземи" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Подигни" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Нема достапно преглед за" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 891b3ea2b5..d4f949879a 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index f34f004866..d4656ea09d 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Аппликации" msgid "Admin" msgstr "Админ" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 6dcdbfc2f5..fcaab41108 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Безбедносно предупредување" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Вашата папка со податоци и датотеките е најверојатно достапна од интернет. .htaccess датотеката што ја овозможува ownCloud не фунционира. Силно препорачуваме да го исконфигурирате вашиот сервер за вашата папка со податоци не е достапна преку интернетт или преместете ја надвор од коренот на веб серверот." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Записник" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Повеќе" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Помалку" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Верзија" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Имате искористено %s од достапните %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Јазик" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користете ја оваа адреса да " diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index d84b08f50c..9ad37ece8d 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 229d3b0b68..9bcdfd3937 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Hos pangkalan data" msgid "Finish setup" msgstr "Setup selesai" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Log keluar" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index d7a2b16729..bfb086d62e 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fail" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fail" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 32e0b37b83..80ba103e3d 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 03c2064fae..bddfe537e6 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 66399c89a2..970b7e75f9 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Kata laluan" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Hantar" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Muat turun" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index d0b78cc6f3..ec2dfa4249 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index acc4c08fe4..4fca82933b 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplikasi" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 9a47350530..d4b492cc02 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "_nama_bahasa_" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Amaran keselamatan" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kata laluan" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index caf097cb1a..ed5d4b77a0 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index eaf0152b6f..4c59ffd121 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "" msgid "Finish setup" msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index ae1645b5af..00193680e2 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 34ad4d6608..3465eb2405 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 2d2b871ee1..bb40b83f31 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "စကားဝှက်" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "ထည့်သွင်းမည်" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 9d3f5cdca4..e4d5993e77 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Apps" msgid "Admin" msgstr "အက်ဒမင်" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index d6d9c3b428..8dbec6d9c7 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Databasevert" msgid "Finish setup" msgstr "Fullfør oppsetting" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index b01fa174e5..28d6d3bb05 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fil" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "filer" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index a9169b4068..0daabad1ea 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 7802e35c2b..bf47440476 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index b2459ccc8b..436b638a78 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Send inn" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Last ned" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Last opp" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 9c5251eea9..3d779883ea 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index bb3bd74a1e..21f56e5a18 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Apper" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 13ae361aff..c00cb1b8e8 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Feil ved oppretting av bruker" msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Ditt data mappe og dine filer er sannsynligvis tilgjengelig fra internet. .htaccess filene som ownCloud bruker virker ikke. Du bør konfigurere din nettserver slik at data mappa ikke lenger er tilgjengelig eller flytt data mappe ut av nettserverens dokumentområde." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Installasjonsadvarsel" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Vennligst dobbelsjekk installasjonsguiden." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulen 'fileinfo' mangler" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Språk virker ikke" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Denne ownCloud serveren kan ikke sette systemspråk til %s. Det kan være problemer med visse tegn i filnavn. Vi foreslår at du installerer de nødvendige pakkene på ditt system for å støtte %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Ingen internettilkopling" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Denne ownCloud serveren har ikke tilkopling til internett. Noen funksjoner som f.eks. tilkopling til ekstern lager, melgin om oppdatering og installasjon av tredjeparts apps vil ikke virke. Vi foreslår at du aktivere en internettilkopling til denne serveren hvis du vil bruke alle funksjonene i ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php er registrert som webcron-tjeneste. Kjør cron.php siden i ownCloud rot hvert minutt vha http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Bruk systemets crontjeneste. Kjør cron.php filen i owncloud mappa vha systemets crontjeneste hver minutt." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktiver API for Deling" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Tillat apps å bruke API for Deling" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Tillat lenker" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Tillat brukere å dele filer med lenker" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "TIllat videredeling" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Tillat brukere å dele filer som allerede har blitt delt med dem" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Tillat brukere å dele med alle" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Tvinger klienter til å bruke ownCloud via kryptert tilkopling." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Vær vennlig, bruk denne ownCloud instansen via HTTPS for å aktivere eller deaktivere tvungen bruk av SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logg" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mer" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mindre" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versjon" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brukt %s av tilgjengelig %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Visningsnavn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Epost" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Oppi epostadressen du vil tilbakestille passordet for" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Språk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressen for å kople til ownCloud i din filbehandler" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 85d1024505..2a5b9a8237 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index cead23af39..53e5a46e00 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 8827c53476..4dc2fd5cd4 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 1823499d29..37489e0ed6 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 2de87d5e60..a248132adc 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Databaseserver" msgid "Finish setup" msgstr "Installatie afronden" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s is beschikbaar. Verkrijg meer informatie over het bijwerken." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Afmelden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 9a2214cfa9..ae29056bfc 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "bestand" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "bestanden" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index 9e02619d6f..d69aec2838 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -63,14 +63,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP module OpenSSL is niet geïnstalleerd." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Vraag uw beheerder deze module te installeren. Tot zolang is de crypto app gedeactiveerd." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 1ce3e1369c..4ebdfbe8db 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 097637f5d7..a6294e70a7 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Wachtwoord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Verzenden" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Downloaden" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index ca757c30af..417ee106bd 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 74367ab03a..18171e425e 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Apps" msgid "Admin" msgstr "Beheerder" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index d8f83970b9..21ec7c4f26 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Fout bij aanmaken gebruiker" msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Nederlands" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Beveiligingswaarschuwing" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htaccess bestand dat ownCloud levert werkt niet goed. U wordt aangeraden om de configuratie van uw webserver zodanig aan te passen dat de data folders niet meer publiekelijk toegankelijk zijn. U kunt ook de data folder verplaatsen naar een folder buiten de webserver document folder." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Instellingswaarschuwing" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Controleer de installatiehandleiding goed." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' ontbreekt" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Taalbestand werkt niet" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Deze ownCloud server kan de systeemtaal niet instellen op %s. Hierdoor kunnen er mogelijk problemen optreden met bepaalde tekens in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren zodat %s ondersteund wordt." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internet verbinding werkt niet" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Deze ownCloud server heeft geen actieve internet verbinding. dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internet verbinding voor deze server in te schakelen als u alle functies van ownCloud wilt gebruiken." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php is geregistreerd bij een webcron service. Roep eens per minuut de cron.php pagina aan over http in de ownCloud root." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Gebruik de systems cron service. Roep eens per minuut de cron.php file in de ownCloud map via een systeem cronjob." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Afdwingen dat de clients alleen via versleutelde verbinding contact maken met ownCloud." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Maak via HTTPS verbinding met deze ownCloud inrichting om het afdwingen van gebruik van SSL te activeren of deactiveren." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Meer" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Minder" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versie" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Je hebt %s gebruikt van de beschikbare %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nieuw" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Weergavenaam" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Vul een mailadres in om je wachtwoord te kunnen herstellen" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Taal" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 208eee2c59..8938851e6d 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 590397fa37..98bfac971d 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Databasetenar" msgid "Finish setup" msgstr "Fullfør oppsettet" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er tilgjengeleg. Få meir informasjon om korleis du oppdaterer." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 9c7ec67ddc..c4bb1533ed 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index bcff36cdcd..c8ba72ef42 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index c2098a0454..1bb375dea3 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 164f7aa92d..e3d7bd1cad 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Send" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappa %s med deg" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Last ned" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Last opp" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Inga førehandsvising tilgjengeleg for" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index b9cd7573b7..60d7ca60fa 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 440c27e197..8764230281 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Program" msgid "Admin" msgstr "Administrer" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 0f8180340b..fee3ace1a7 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Feil ved oppretting av brukar" msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Nynorsk" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Tryggleiksåtvaring" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett. Fila .htaccess som ownCloud tilbyr fungerer ikkje. Me rår sterkt til at du set opp tenaren din slik at datamappa ikkje lenger er tilgjengeleg, eller at du flyttar datamappa vekk frå dokumentrota til tenaren." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Oppsettsåtvaring" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulen «fileinfo» manglar" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Regionaldata fungerer ikkje" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Denne ownCloud-tenaren kan ikkje stilla regionen til %s. Dette tyder at det kan vera problem med visse teikn i filnamn. Me rår sterkt til å installera systempakkane som trengst for å støtta %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Nettilkoplinga fungerer ikkje" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsprogram ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du slå på nettilkoplinga til denne tenaren viss du vil nytta alle funksjonane til ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Utfør éi oppgåve for kvar sidelasting" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php er registrert ved ei webcron-teneste. Last sida cron.php i ownCloud-rota ein gong i minuttet over http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Bruk cron-tenesta til systemet. Køyr fila cron.php i ownCloud-mappa frå ein cron-jobb på systemet ein gong i minuttet." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Slå på API-et for deling" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "La app-ar bruka API-et til deling" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Tillat lenkjer" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "La brukarar dela ting offentleg med lenkjer" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Tillat vidaredeling" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "La brukarar vidaredela delte ting" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "La brukarar dela med kven som helst" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Krev at klientar koplar til ownCloud med ei kryptert tilkopling." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Ver venleg og kopla denne ownCloud-instansen til via HTTPS for å slå av/på SSL-handhevinga." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logg" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Meir" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mindre" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brukt %s av dine tilgjengelege %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Passordet ditt er endra" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Klarte ikkje endra passordet" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Passord" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Visingsnamn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-post" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Di epost-adresse" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Fyll inn e-postadressa di for å gjera passordgjenoppretting mogleg" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Språk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hjelp oss å omsetja" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressa for å kopla til din ownCloud frå filhandsamaren din" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index c62c2cac19..7906232c66 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 393f8fdea6..fb6d956410 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Òste de basa de donadas" msgid "Finish setup" msgstr "Configuracion acabada" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Sortida" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 3938a696f0..7913124e55 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fichièr" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fichièrs" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index fb09b5d5fb..a9474224b7 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 2854e9da54..3ab7dadb48 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 9173783660..648e45ac3f 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Senhal" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Sosmetre" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 4d9ad616a1..93897df411 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 3d4230bbd3..0e80821a6b 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Apps" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 6805662448..e0668bd3f6 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avertiment de securitat" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Executa un prètfach amb cada pagina cargada" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Utiliza lo servici cron de ton sistèm operatiu. Executa lo fichièr cron.php dins lo dorsier owncloud tras cronjob del sistèm cada minuta." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Al partejar" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activa API partejada" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Jornal" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senhal" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Lenga" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 043c42bf03..bbc7fccc22 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 2b4e7e47ce..87a46dd01b 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Komputer bazy danych" msgid "Finish setup" msgstr "Zakończ konfigurowanie" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s jest dostępna. Dowiedz się więcej na temat aktualizacji." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Wyloguj" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index a369596152..184bc9e249 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -233,7 +233,7 @@ msgstr "Ilość plików: {count}" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s nie można zmienić nazwy" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -331,19 +331,19 @@ msgstr "Aktualnie skanowane" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "Katalog" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "Katalogi" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "plik" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "pliki" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index c94cf9e38c..8342d627db 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -63,14 +63,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Moduł PHP OpenSSL nie jest zainstalowany" +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Proszę poproś administratora serwera aby zainstalował ten moduł. Obecnie aplikacja szyfrowanie została wyłączona." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 9b919ab67e..fa243c4f0c 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 843b94c807..51fd0ff3e1 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Hasło" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Wyślij" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s współdzieli folder z tobą %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Pobierz" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 5656e19b88..aca2ca239a 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 9cd79056e9..57736058c2 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplikacje" msgid "Admin" msgstr "Administrator" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 332b57a9a7..64b74c896f 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Błąd podczas tworzenia użytkownika" msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "polski" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Ostrzeżenie o zabezpieczeniach" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Katalog danych i twoje pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess dostarczony przez ownCloud nie działa. Zalecamy skonfigurowanie serwera internetowego w taki sposób, aby katalog z danymi nie był dostępny lub przeniesienie katalogu z danymi poza katalog główny serwera internetowego." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Ostrzeżenia konfiguracji" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Sprawdź ponownie przewodniki instalacji." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Brak modułu „fileinfo”" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokalizacja nie działa" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Ten serwer ownCloud nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Połączenie internetowe nie działa" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Ten serwer OwnCloud nie ma działającego połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub instalacja dodatkowych aplikacji nie będą działać. Dostęp do plików z zewnątrz i wysyłanie powiadomień e-mail może również nie działać. Sugerujemy, aby włączyć połączenie internetowe dla tego serwera, jeśli chcesz korzystać ze wszystkich funkcji ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php jest zarejestrowany w usłudze webcron. Przywołaj stronę cron.php w katalogu głównym ownCloud raz na minutę przez http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Użyj systemowej usługi cron. Przywołaj plik cron.php z katalogu ownCloud przez systemowy cronjob raz na minutę." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Wymusza na klientach na łączenie się ownCloud za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Proszę połącz się do tej instancji ownCloud za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logi" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Więcej" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mniej" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Wersja" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Wykorzystujesz %s z dostępnych %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Hasło" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Wyświetlana nazwa" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Twój adres e-mail" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Język" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 128ecc074c..e0f4cee024 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index e7d3a4df5e..65fd184b7f 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Host do banco de dados" msgid "Finish setup" msgstr "Concluir configuração" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponível. Obtenha mais informações sobre como atualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 2c7f1020ab..04247de57b 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -5,13 +5,14 @@ # Translators: # bjamalaro , 2013 # Flávio Veras , 2013 +# tuliouel, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 18:30+0000\n" +"Last-Translator: tuliouel\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -331,19 +332,19 @@ msgstr "Scanning atual" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "diretório" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "diretórios" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "arquivo" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "arquivos" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index d11f4ef2df..68b80dba9e 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 15:10+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,14 +64,15 @@ msgid "" msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "O módulo PHP OpenSSL não está instalado." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Por favor peça ao administrador do servidor para instalar o módulo. Por enquanto o app de encriptação foi desabilitada." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 759a65f40f..7d3361b2e1 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index e3ce117e70..8fcaa98324 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Senha" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Submeter" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Baixar" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Upload" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 3e1968e324..b6502c0a24 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 30dd7931cb..d55efcc9cb 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicações" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index a917f8535c..f36dd96b18 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Erro ao criar usuário" msgid "A valid password must be provided" msgstr "Forneça uma senha válida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Português (Brasil)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Seu diretório de dados e seus arquivos estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Aviso de Configuração" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece não estar funcionando." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, confira o guia de instalação." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Módulo 'fileinfo' faltando" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type)." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Localização não funcionando" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Este servidor ownCloud não pode configurar a localização do sistema para %s. Isto significa que pode haver problema com alguns caracteres nos nomes de arquivos. Nós recomendamos fortemente que você instale os pacotes requeridos em seu sistema para suportar %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Sem conexão com a internet" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud não tem conexão com a internet. Isto significa que alguns dos recursos como montar armazenamento externo, notificar atualizações ou instalar aplicativos de terceiros não funcionam. Acesso remoto a arquivos e envio de e-mails de notificação podem também não funcionar. Sugerimos que habilite a conexão com a internet neste servidor se quiser usufruir de todos os recursos do ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php está registrado no serviço webcron. Chame a página cron.php na raíz do owncloud a cada minuto por http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Usar serviço de cron do sistema. Chama o arquivo cron.php na pasta owncloud via cronjob do sistema a cada minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir que usuários compartilhem itens com o público usando links" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Segurança" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Força o cliente a conectar-se ao ownCloud por uma conexão criptografada." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Por favor, conecte-se a esta instância do ownCloud via HTTPS para habilitar ou desabilitar 'Forçar SSL'." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registro" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mais" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versão" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Você usou %s do seu espaço de %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senha" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nome de Exibição" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Preencha um endereço de e-mail para habilitar a recuperação de senha" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usar este endereço para conectar-se ao seu ownCloud no seu gerenciador de arquivos" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index e696db5b0a..0ced82a9ab 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index eb3a7ebb2c..0488643d6c 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Anfitrião da base de dados" msgid "Finish setup" msgstr "Acabar instalação" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponível. Tenha mais informações como actualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 96d3570cf8..3eead822b7 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ficheiro" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ficheiros" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 64e9510c7f..7ad79e88e8 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -64,13 +64,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index da7e498990..4e37dd6eb3 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index f7461b33f0..4d38690dd9 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Password" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Submeter" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Transferir" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Carregar" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Não há pré-visualização para" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index bddeaee8dd..c6cddd6f0e 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index af114843c0..4e2b5d081d 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicações" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index fbd8b7f292..9391d4e97d 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -168,15 +168,15 @@ msgstr "Erro a criar utilizador" msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -185,36 +185,36 @@ msgid "" " webserver document root." msgstr "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Aviso de setup" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Por favor verifique installation guides." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Falta o módulo 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Internacionalização não está a funcionar" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -222,11 +222,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "A ligação à internet não está a funcionar" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -236,102 +236,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud não tem uma ligação de internet funcional. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretende obter todas as funcionalidades do ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php está registado como um serviço webcron. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Usar o serviço cron do sistema. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Partilha" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activar a API de partilha" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir que os utilizadores usem a API de partilha" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir que os utilizadores partilhem itens com o público utilizando um link." -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir repartilha" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir que os utilizadores partilhem com todos" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Segurança" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Forçar clientes a ligar através de uma ligação encriptada" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Por favor ligue-se ao ownCloud através de uma ligação HTTPS para ligar/desligar o forçar da ligação por SSL" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registo" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mais" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versão" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usou %s do disponivel %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Password" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nome público" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 792e33e28f..3809ce19f4 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 9573e82db1..13b672d7b5 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Bază date" msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s este disponibil. Vezi mai multe informații despre procesul de actualizare." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Ieșire" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 3f0e134ac6..1e02a96a14 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fișier" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fișiere" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index 6cc1936153..d499ad94c5 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index bcb0c80a98..a8f053485c 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 9df5a1bbbb..36d3190be8 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Parolă" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Trimite" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Descarcă" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 14865e2135..cadca65fea 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 090a40014a..4909d62b61 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplicații" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 3b2ba95e0e..612326efce 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "_language_name_" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avertisment de securitate" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Execută o sarcină la fiecare pagină încărcată" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php este înregistrat în serviciul webcron. Accesează pagina cron.php din root-ul owncloud odată pe minut prin http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Folosește serviciul cron al sistemului. Accesează fișierul cron.php din directorul owncloud printr-un cronjob de sistem odată la fiecare minut." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Partajare" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activare API partajare" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permite aplicațiilor să folosească API-ul de partajare" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Pemite legături" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permite utilizatorilor să partajeze fișiere în mod public prin legături" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permite repartajarea" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mai mult" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ați utilizat %s din %s disponibile" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parolă" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Completează o adresă de mail pentru a-ți putea recupera parola" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Limba" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Folosește această adresă pentru a conecta ownCloud cu managerul de fișiere" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index f2fef57c9e..b3d9bbb73b 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index ef301d97c6..71329669d0 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -577,12 +577,12 @@ msgstr "Хост базы данных" msgid "Finish setup" msgstr "Завершить установку" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s доступно. Получить дополнительную информацию о порядке обновления." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Выйти" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index a4ddcee2f3..e25b29fe21 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "файл" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "файлы" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 13f8654858..87d54b1d21 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -66,14 +66,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Модуль OpenSSL для PHP не установлен." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Попросите администратора сервера установить модуль. Приложение шифрования было временно отключено." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index b89d75cf54..6d3950b621 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index cfd74c4167..625e240fe3 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Пароль" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Отправить" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Скачать" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Предпросмотр недоступен для" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index ea859fe28a..9393a081ef 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 8383b7bab6..ab21862931 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Приложения" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 9154300144..f89a5dac1b 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: lord93 \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -169,15 +169,15 @@ msgstr "Ошибка создания пользователя" msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Русский " -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Предупреждение безопасности" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -186,36 +186,36 @@ msgid "" " webserver document root." msgstr "Ваш каталог с данными и файлы, вероятно, доступны из интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем настроить веб-сервер таким образом, чтобы каталоги данных больше не были доступны, или переместить их за пределы корневого каталога документов веб-сервера." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Предупреждение установки" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' отсутствует" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Локализация не работает" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -223,11 +223,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Этот сервер ownCloud не может установить язык системы на %s. Это означает, что могут быть проблемы с некоторыми символами в именах файлов. Мы настоятельно рекомендуем установить необходимые пакеты в вашей системе для поддержки %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Интернет-соединение не работает" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -237,102 +237,102 @@ msgid "" " of ownCloud." msgstr "Этот сервер ownCloud не имеет рабочего интернет-соединения. Это значит, что некоторые возможности отключены, например: подключение внешних носителей, уведомления об обновлениях, установка сторонних приложений." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Планировщик задач по расписанию" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Выполнять одно задание с каждой загруженной страницей" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "Зарегистрировать cron.php в службе webcron сервисе. Вызывает страницу cron.php в корне owncloud раз в минуту через http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Использовать системную службу cron. Вызов файла cron.php в папке owncloud через систему cronjob раз в минуту." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Общий доступ" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Включить API общего доступа" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Позволить приложениям использовать API общего доступа" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Разрешить переоткрытие общего доступа" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Разрешить пользователя делать общий доступ любому" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Принудить клиентов подключаться к ownCloud через шифрованное подключение." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Пожалуйста, подключитесь к этому экземпляру ownCloud через HTTPS для включения или отключения SSL принуждения." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Лог" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Уровень лога" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Больше" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Меньше" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Версия" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Вы использовали %s из доступных %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Отображаемое имя" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Введите адрес электронной почты чтобы появилась возможность восстановления пароля" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Язык" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Используйте этот адрес для подключения файлового менеджера к этому хранилищу" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index eed80a0717..9647486ac9 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index ff73ee55f0..d0453b0a9a 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "දත්තගබඩා සේවාදායකයා" msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "නික්මීම" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 14051b36ca..1829a5e706 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ගොනුව" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ගොනු" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 8f90db4f53..fee22ab537 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index c6f71aaf0a..9a29be25bb 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 3d936b54d8..cb5315ae37 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "මුර පදය" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "යොමු කරන්න" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "බාන්න" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 49c40496be..94157f9e48 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index a44a42d367..cd52a1d43d 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "යෙදුම්" msgid "Admin" msgstr "පරිපාලක" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්‍රියයි" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 6c72ebae4e..7c96c853ea 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "ආරක්ෂක නිවේදනයක්" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "ඔබගේ දත්ත ඩිරෙක්ටරිය හා ගොනුවලට අන්තර්ජාලයෙන් පිවිසිය හැක. ownCloud සපයා ඇති .htaccess ගොනුව ක්‍රියාකරන්නේ නැත. අපි තරයේ කියා සිටිනුයේ නම්, මෙම දත්ත හා ගොනු එසේ පිවිසීමට නොහැකි වන ලෙස ඔබේ වෙබ් සේවාදායකයා වින්‍යාස කරන ලෙස හෝ එම ඩිරෙක්ටරිය වෙබ් මූලයෙන් පිටතට ගෙනයන ලෙසය." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "හුවමාරු කිරීම" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "යොමු සලසන්න" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "යළි යළිත් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "හුවමාරු කළ හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "වැඩි" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "අඩු" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "මුර පදය" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "විද්‍යුත් තැපෑල" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "ඔබගේ විද්‍යුත් තැපෑල" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "මුරපද ප්‍රතිස්ථාපනය සඳහා විද්‍යුත් තැපැල් විස්තර ලබා දෙන්න" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 583da78eea..a7c9e4121b 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index e5f301b16c..f4a23c5980 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index ef0f5ad7ce..0045481454 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index a69a9c44f3..d1f1b336f1 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 6eba880c3b..82f9604d2c 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Server databázy" msgid "Finish setup" msgstr "Dokončiť inštaláciu" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je dostupná. Získajte viac informácií k postupu aktualizáce." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odhlásiť" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 54a3a5ff41..5ea8b9e786 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "súbor" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "súbory" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index b808c3fea5..f32ee0daed 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index b880a16e68..f74c1222c1 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 98f959cd94..f03437d7b5 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Odoslať" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Odoslať" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index caab3739ba..927e189150 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 7b944d948e..e4a4f8d82f 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplikácie" msgid "Admin" msgstr "Administrátor" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index c6a2c30c22..a5564b8787 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Chyba pri vytváraní používateľa" msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Slovensky" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Bezpečnostné varovanie" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Váš priečinok s dátami a Vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne Vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Nastavenia oznámení" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Prosím skontrolujte inštalačnú príručku." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Chýba modul 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokalizácia nefunguje" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Tento server ownCloud nemôže nastaviť národné prostredie systému na %s. To znamená, že by mohli byť problémy s niektorými znakmi v názvoch súborov. Veľmi odporúčame nainštalovať požadované balíky na podporu %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Pripojenie na internet nefunguje" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Tento server ownCloud nemá funkčné pripojenie k internetu. To znamená, že niektoré z funkcií, ako je pripojenie externého úložiska, oznámenia o aktualizáciách či inštalácia aplikácií tretích strán nefungujú. Prístup k súborom zo vzdialených miest a odosielanie oznamovacích e-mailov tiež nemusí fungovať. Odporúčame pripojiť tento server k internetu, ak chcete využívať všetky vlastnosti ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Vykonať jednu úlohu s každým načítaní stránky" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php je registrovaná u služby webcron. Zavolá cron.php stránku v koreňovom priečinku owncloud raz za minútu cez protokol HTTP." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Používať systémovú službu cron. Zavolať cron.php v priečinku owncloud cez systémovú úlohu raz za minútu" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Zdieľanie" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Povoliť API zdieľania" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Povoliť aplikáciám používať API na zdieľanie" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Povoliť odkazy" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Povoliť zdieľanie ďalej" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Povoliť používateľom ďalej zdieľať zdieľané položky" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Povoliť používateľom zdieľať s kýmkoľvek" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Vynúti pripojovanie klientov ownCloud cez šifrované pripojenie." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Pripojte sa k tejto inštancii ownCloud cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Záznam" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Viac" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menej" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Verzia" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Použili ste %s z %s dostupných " -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Heslo bolo zmenené" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované meno" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 80e97cf43e..31f55ab48e 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 31354562a3..cb93b7bd42 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "Gostitelj podatkovne zbirke" msgid "Finish setup" msgstr "Končaj namestitev" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je na voljo. Pridobite več podrobnosti za posodobitev." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odjava" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index fc61579343..0a97258f8a 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "datoteka" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "datoteke" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 1bf17accc4..0386afaca3 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 20:10+0000\n" -"Last-Translator: barbarak \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,14 +63,15 @@ msgid "" msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP-modul OpenSSL ni nameščen." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Obvestite skrbnika strežnika, da namesti manjkajoč modul. Trenutno je šifriranje onemogočeno." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 30430a89fb..bd859f79fc 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 676e39381b..7ec9eb98b8 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Geslo" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Pošlji" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "Oseba %s je določila mapo %s za souporabo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Prejmi" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Predogled ni na voljo za" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index ab48ee033f..5dba62b27b 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index c85150cb06..1f82014f69 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Programi" msgid "Admin" msgstr "Skrbništvo" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index b0abe2431e..f5a3257c7a 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Napaka ustvarjanja uporabnika" msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Slovenščina" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Varnostno opozorilo" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud, namreč ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da mapa podatkov ne bo javno dostopna, ali pa, da jo prestavite v podrejeno mapo korenske mape spletnega strežnika." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Opozorilo nastavitve" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Preverite navodila namestitve." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Manjka modul 'fileinfo'." -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Jezikovne prilagoditve ne delujejo." -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Na strežniku ownCloud ni mogoče nastaviti jezikovnih določil na jezik %s. Najverjetneje so težave s posebnimi znaki v imenih datotek. Priporočljivo je namestiti zahtevane pakete za podporo jeziku %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internetna povezava ne deluje." -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Strežnik ownCloud je brez delujoče internetne povezave. To pomeni, da bodo nekatere možnosti onemogočene. Ne bo mogoče priklapljati zunanjih priklopnih točk, ne bo obvestil o posodobitvah ali namestitvah programske opreme, prav tako najverjetneje ne bo mogoče pošiljati obvestilnih sporočil preko elektronske pošte. Za uporabo vseh zmožnosti oblaka ownCloud, mora biti internetna povezava vzpostavljena in delujoča." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Izvedi eno nalogo z vsako naloženo stranjo." -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "Datoteka cron.php je vpisana pri storitvi webcron. Preko protokola HTTP je datoteka cron.php, ki se nahaja v korenski mapi ownCloud, klicana enkrat na minuto." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Uporaba sistemske storitve cron. Preko sistemskega posla cron je datoteka cron.php, ki se nahaja v mapi ownCloud, klicana enkrat na minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Souporaba" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Dovoli programom uporabo vmesnika API souporabe" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Varnost" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Zahtevaj šifrirano povezovanje odjemalcev v oblak ownCloud" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Prijava mora biti vzpostavljena z uporabo protokola HTTPS za omogočanje šifriranja SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Več" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Manj" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Različica" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Uporabljenega je %s od razpoložljivih %s prostora." -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Geslo" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Geslo je spremenjeno" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Prikazano ime" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Elektronski naslov" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Osebni elektronski naslov" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jezik" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Sodelujte pri prevajanju" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud." diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index f9c945214b..f172c51d81 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 4c90f67aad..9dd4c083b5 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Pozicioni (host) i database-it" msgid "Finish setup" msgstr "Mbaro setup-in" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Dalje" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 0a804b7f6f..532de30b33 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index b306775e93..1642b96a82 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index e1f5bb7470..75f4f40a97 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index c0c93efbc1..cd10e24824 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Kodi" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Parashtro" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ndau me ju dosjen %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Shkarko" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Shikimi paraprak nuk është i mundur për" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index e989d88396..019dbc6c4e 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 52f393a4b1..08b980ef40 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "App" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 2305cfa086..68a9f1a0bb 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Paralajmërim sigurie" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kodi" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Kodi i ri" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email-i" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 8a25014c02..63ae8ea0c1 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a07d2708fb..6f4c2ff8f9 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Домаћин базе" msgid "Finish setup" msgstr "Заврши подешавање" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Одјава" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index d825986cca..8ecf30226e 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index c7e8000b8f..081f03f53f 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 09d76528e7..d5b9824005 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index c9138d6677..187091dc0f 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Лозинка" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Пошаљи" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Преузми" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 7af835ef67..6f72e91615 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 4db91832cf..fc638ea0a8 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Апликације" msgid "Admin" msgstr "Администратор" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 32127fe3b0..c769835739 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "Грешка при прављењу корисника" msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Сигурносно упозорење" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Тренутно су ваши подаци и датотеке доступне са интернета. Датотека .htaccess коју је обезбедио пакет ownCloud не функционише. Саветујемо вам да подесите веб сервер тако да директоријум са подацима не буде изложен или да га преместите изван коренског директоријума веб сервера." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Упозорење о подешавању" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Погледајте водиче за инсталацију." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Недостаје модул „fileinfo“" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Локализација не ради" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Веза с интернетом не ради" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Изврши један задатак са сваком учитаном страницом" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Дељење" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Омогући API Share" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Дозвољава апликацијама да користе API Share" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Дозволи везе" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Дозволи корисницима да деле ставке с другима путем веза" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Дозволи поновно дељење" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Дозволи корисницима да поновно деле ставке с другима" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Дозволи корисницима да деле са било ким" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Бележење" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Више" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Мање" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Верзија" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Искористили сте %s од дозвољених %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Лозинка је промењена" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Име за приказ" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Ун" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Језик" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index a24a893e6e..cc90019174 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 03b2a6c847..3b6924c9d3 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Domaćin baze" msgid "Finish setup" msgstr "Završi podešavanje" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odjava" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index f8824503c1..8315723cb3 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 49462d8588..a85e29f4eb 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index d22db99012..d51263ad3d 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 7306393590..b194043d3d 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Lozinka" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Pošalji" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index aae6cfbf14..19caa509c7 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 7d08131325..8431553968 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Programi" msgid "Admin" msgstr "Adninistracija" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index e3abd3582b..0d7e05d74d 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jezik" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index d96e74ef8a..e0ec098b2b 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 05:30+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -576,12 +576,12 @@ msgstr "Databasserver" msgid "Finish setup" msgstr "Avsluta installation" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s är tillgänglig. Få mer information om hur du går tillväga för att uppdatera." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Logga ut" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index dc7252fcec..1cd442d754 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 09:10+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -332,19 +332,19 @@ msgstr "Aktuell skanning" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "mapp" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "mappar" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fil" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "filer" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 41e5335190..e311ebaf59 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 05:50+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +65,15 @@ msgid "" msgstr "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP-modulen för OpenSSL är inte installerad." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Be din systemadministratör att installera modulen. För tillfället är appen för kryptering inaktiverad." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 62d6da1d8e..79ead110e2 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 9cd448addd..d70c00bf94 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Lösenord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Skicka" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index c176a7d17e..600a0d96b2 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 677772c071..bdeb2188c3 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Program" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 7ea1f071d3..fa154a3b61 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -169,15 +169,15 @@ msgstr "Fel vid skapande av användare" msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Säkerhetsvarning" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -186,36 +186,36 @@ msgid "" " webserver document root." msgstr "Din datakatalog och dina filer är förmodligen tillgängliga från Internet. Den .htaccess-fil som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern så att datakatalogen inte längre är tillgänglig eller att du flyttar datakatalogen utanför webbserverns dokument-root." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Installationsvarning" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Var god kontrollera installationsguiden." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulen \"fileinfo\" saknas" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale fungerar inte" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -223,11 +223,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Denna ownCloud server kan inte sätta system locale till %s. Det innebär att det kan vara problem med vissa tecken i filnamnet. Vi vill verkligen rekommendera att du installerar nödvändiga paket på ditt system för att stödja %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internetförbindelsen fungerar inte" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -237,102 +237,102 @@ msgid "" " of ownCloud." msgstr "Den här ownCloudservern har ingen fungerande internetförbindelse. Det innebär att några funktioner som t.ex. att montera externa lagringsplatser, meddelanden om uppdateringar eller installation av tredjepartsappar inte fungerar. Det kan vara så att det inte går att få fjärråtkomst till filer och att e-post inte fungerar. Vi rekommenderar att du tillåter internetåtkomst för den här servern om du vill ha tillgång till alla funktioner hos ownCloud" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Dela" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Tillåt vidaredelning" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dem" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Tvingar klienter att ansluta till ownCloud via en krypterad förbindelse." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Vänligen anslut till denna instans av ownCloud via HTTPS för att aktivera/avaktivera SSL" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logg" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mer" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mindre" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har använt %s av tillgängliga %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lösenord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Visningsnamn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-post" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Fyll i en e-postadress för att aktivera återställning av lösenord" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Språk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Använd denna adress för att ansluta till ownCloud i din filhanterare" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 72cac7d0ec..838ca5b70c 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 122916bf26..50c13bf25e 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 59497e6da2..5e4f08ccb5 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index c767063fab..cf3d110e8e 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index e5536b5a34..16b4d4dfa7 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "தரவுத்தள ஓம்புனர்" msgid "Finish setup" msgstr "அமைப்பை முடிக்க" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "விடுபதிகை செய்க" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 112d3eaebf..1c03263e1c 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 6b9ebd913b..fc2389171d 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 1151a5f08f..929d3d3b4f 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 6abbc03361..071a3107f3 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "சமர்ப்பிக்குக" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 2186f6b5a1..3bcff1d04a 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index b52813cbf2..196a015a36 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "செயலிகள்" msgid "Admin" msgstr "நிர்வாகம்" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 11c2b4bfda..a0caf8ebf3 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "_மொழி_பெயர்_" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "பாதுகாப்பு எச்சரிக்கை" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "உங்களுடைய தரவு அடைவு மற்றும் உங்களுடைய கோப்புக்களை பெரும்பாலும் இணையத்தினூடாக அணுகலாம். ownCloud இனால் வழங்கப்படுகின்ற .htaccess கோப்பு வேலை செய்யவில்லை. தரவு அடைவை நீண்ட நேரத்திற்கு அணுகக்கூடியதாக உங்களுடைய வலைய சேவையகத்தை தகவமைக்குமாறு நாங்கள் உறுதியாக கூறுகிறோம் அல்லது தரவு அடைவை வலைய சேவையக மூல ஆவணத்திலிருந்து வெளியே அகற்றுக. " -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "மொழி" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index d5a2845968..14b0e2b0f7 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index e4ad3d5a78..1048ece86e 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "నిష్క్రమించు" diff --git a/l10n/te/files.po b/l10n/te/files.po index beda348cf7..8422846352 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 0ed2523662..20a34b874a 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index a280bae5d0..fbd6a1a4e0 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index a476173190..1016563e1e 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "సంకేతపదం" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index a843e544b1..f2592ebfed 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index ad61a898e8..6a93cfc587 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "" msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index a95c7b8ab7..c75cc67f35 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "సంకేతపదం" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "ఈమెయిలు" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "మీ ఈమెయిలు చిరునామా" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "భాష" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index d347da4981..eddbf351c6 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index dfeba7ec1e..5b7753ae03 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -572,12 +572,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5ae3a7d4ee..b32337eab6 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7eb3ea12ec..7c2e959cb1 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -61,13 +61,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index abcb7a48c6..113588c54c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index ed7492102d..d2160e952e 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,35 +18,39 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 648420aa3e..85921f556a 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 43d4830865..e783052228 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 96f2c488db..6f9cb0e882 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 8786a16f4f..c044d3dd08 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" "webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" "to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" "of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 30edd47e83..1dfa258a2a 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 6d229e2278..b28542fa64 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 8d05072c64..d2a6768c92 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Database host" msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "ออกจากระบบ" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index d523347575..2c4c609a6c 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ไฟล์" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ไฟล์" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index f35cb8aedb..ad469023b1 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index b8568dc2c4..ac88dabf36 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 440126a1ca..deecf03ec8 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "รหัสผ่าน" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "ส่ง" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 50caf538e8..4310b4de2a 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 3321b332dc..cb180e5463 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "แอปฯ" msgid "Admin" msgstr "ผู้ดูแล" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index a8112d2e9b..1334006e72 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "ภาษาไทย" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "คำเตือนเกี่ยวกับความปลอดภัย" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "การแชร์ข้อมูล" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "มาก" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "น้อย" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "รหัสผ่าน" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "ชื่อที่ต้องการแสดง" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "อีเมล" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ใช้ที่อยู่นี้เพื่อเชื่อมต่อกับ ownCloud ในโปรแกรมจัดการไฟล์ของคุณ" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index f200b8ac7c..4b200fa97f 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 298c719f9c..6fe007d32f 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Veritabanı sunucusu" msgid "Finish setup" msgstr "Kurulumu tamamla" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Çıkış yap" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 41bf38877c..1a128d7245 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "dosya" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "dosyalar" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 372ce4a563..5948a3dedb 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 11a0fc9bda..8c146fbd9a 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index aaee0985ce..d95083776d 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Parola" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Gönder" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "İndir" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Yükle" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index cf1eb26f88..2d60a3b671 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index ba359f803a..eabf5f4b46 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Uygulamalar" msgid "Admin" msgstr "Yönetici" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP indirmeleri kapatılmıştır." diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index bf677c35b3..3f82092aa3 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Kullanıcı oluşturulurken hata" msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Türkçe" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Güvenlik Uyarisi" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Kurulum Uyarısı" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modül 'fileinfo' kayıp" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale çalışmıyor." -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Bu ownCloud sunucusu sistem yerelini %s olarak değiştiremedi. Bu, dosya adlarındaki bazı karakterler ile sorun yaşanabileceği anlamına gelir. %s yerelini desteklemek için gerekli paketleri kurmanızı şiddetle öneririz." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "İnternet bağlantısı çalışmıyor" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "ownCloud sunucusunun internet bağlantısı yok. Bu nedenle harici depolama bağlantısı, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacaktır. Uzak dosyalara erişim ve e-posta ile bildirim gönderme çalışmayacak. Eğer ownCloud tüm özelliklerini kullanmak istiyorsanız, internet bağlantısı gerekmektedir." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php bir webcron hizmetinde kaydedilir. Owncloud kökündeki cron.php sayfasını http üzerinden dakikada bir çağır." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Sistemin cron hizmetini kullan. Bir sistem cronjob'ı ile owncloud klasöründeki cron.php dosyasını dakikada bir çağır." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Paylaşım API'sini etkinleştir." -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Bağlantıları izin ver." -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "İstemcileri ownCloud'a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen bu ownCloud örneğine HTTPS ile bağlanın." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Kayıtlar" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Az" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Kullandığınız:%s seçilebilecekler: %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parola" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Şifreniz değiştirildi" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Ekran Adı" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Eposta" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Eposta adresiniz" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Dil" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bu adresi kullanarak ownCloud 'unuza dosya yöneticinizde bağlanın" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index c2ef0c23a5..1398dd6964 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index e4e97b8c6b..61c3e4a6c1 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "" msgid "Finish setup" msgstr "تەڭشەك تامام" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "تىزىمدىن چىق" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 5eb59234d4..b99bc8b10d 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index a2ab931108..896e7bb478 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index eef158d2a1..45a7c9909e 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 070da9caa8..c44c4963a7 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "ئىم" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "تاپشۇر" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index c8bd1c5635..8a7776eb12 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 40bd277837..3b1c3ce064 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "ئەپلەر" msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 0d892f9113..c8a31a0679 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "ھەمبەھىر" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "ئاز" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "ئىم" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "ئىمنى ئۆزگەرتكىلى بولمايدۇ." -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "نۆۋەتتىكى ئىم" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "يېڭى ئىم" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "ئىم ئۆزگەرت" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "كۆرسىتىش ئىسمى" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "تورخەت" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "تورخەت ئادرېسىڭىز" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "تىل" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "تەرجىمىگە ياردەم" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 26695e12ba..14e85892bd 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 72f7b69669..a8a433e477 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "Хост бази даних" msgid "Finish setup" msgstr "Завершити налаштування" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Вихід" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 8494ed2f8c..134d362147 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "файл" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "файли" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 7347ae2b11..4899683a17 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 6024e8c2a0..6ec43b732b 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 59252dd6b9..11f2da15af 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Пароль" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Передати" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Завантажити" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 88f6e165ae..64d464a3d3 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 69b25f3236..e73905f4cc 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Додатки" msgid "Admin" msgstr "Адмін" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index e924848e6e..3b2dc3f322 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "Помилка при створенні користувача" msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Попередження про небезпеку" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Ваш каталог з даними та Ваші файли можливо доступні з Інтернету. Файл .htaccess, наданий з ownCloud, не працює. Ми наполегливо рекомендуємо Вам налаштувати свій веб-сервер таким чином, щоб каталог data більше не був доступний, або перемістити каталог data за межі кореневого каталогу документів веб-сервера." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Попередження при Налаштуванні" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "Будь ласка, перевірте інструкції по встановленню." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' відсутній" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Локалізація не працює" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Цей сервер ownCloud не може встановити мову системи %s. Це означає, що можуть бути проблеми з деякими символами в іменах файлів. Ми наполегливо рекомендуємо встановити необхідні пакети у вашій системі для підтримки %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Інтернет-з'єднання не працює" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "Цей сервер ownCloud не має під'єднання до Інтернету. Це означає, що деякі функції, такі як монтування зовнішніх накопичувачів, повідомлення про оновлення або встановлення допоміжних програм не працюють. Доступ до файлів ​​віддалено та відправка повідомлень електронною поштою також може не працювати. Ми пропонуємо увімкнути під'єднання до Інтернету для даного сервера, якщо ви хочете мати всі можливості ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Виконати одне завдання для кожної завантаженої сторінки " -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php зареєстрований в службі webcron. Викликає cron.php сторінку в кореневому каталозі owncloud кожну хвилину по http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Використовується системний cron сервіс. Виклик cron.php файла з owncloud теки за допомогою системного cronjob раз на хвилину." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Спільний доступ" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Увімкнути API спільного доступу" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Дозволити програмам використовувати API спільного доступу" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Дозволити посилання" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Дозволити перевідкривати спільний доступ" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Дозволити користувачам відкривати спільний доступ для всіх" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Безпека" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Зобов'язати клієнтів під'єднуватись до ownCloud через шифроване з'єднання." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Будь ласка, під'єднайтесь до цього ownCloud за допомогою HTTPS, щоб увімкнути або вимкнути використання SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Протокол" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Більше" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Менше" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Версія" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ви використали %s із доступних %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Показати Ім'я" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Введіть адресу електронної пошти для відновлення паролю" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Мова" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index b74cf7e653..7fca35f7f2 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index c2f6008f16..ca2b3c2322 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "ڈیٹابیس ہوسٹ" msgid "Finish setup" msgstr "سیٹ اپ ختم کریں" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "لاگ آؤٹ" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 488950beb9..077965992b 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index cd653be6bd..b082d1236b 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 368c787699..119e4cb853 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "پاسورڈ" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - #: templates/public.php:17 #, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index eed07a66dc..3ca0ae9535 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index f0fe17c864..b2dcddae24 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "ایپز" msgid "Admin" msgstr "ایڈمن" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index e6f1d5cc50..6fbd66db44 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "پاسورڈ" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "نیا پاسورڈ" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index e0d3982842..c47c5eb38b 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 5b682e5ff0..0cd21a7866 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -573,12 +573,12 @@ msgstr "Database host" msgid "Finish setup" msgstr "Cài đặt hoàn tất" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s còn trống. Xem thêm thông tin cách cập nhật." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Đăng xuất" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 23ea01f766..c3ce96ba20 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "file" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "files" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index 39200c6342..d075fbbae3 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index bb43f1a2a0..efc55d1228 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 67064fb28e..4fcc10717e 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Mật khẩu" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Xác nhận" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "Tải về" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "Không có xem trước cho" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index e43f1798e8..d3d2d1c4de 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index f343987864..44174a48f0 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Ứng dụng" msgid "Admin" msgstr "Quản trị" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 38dbe3130e..0344004549 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__Ngôn ngữ___" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Cảnh bảo bảo mật" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ mạng. Tập tin .htaccess do ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ web để thư mục dữ liệu không còn bị truy cập hoặc bạn nên di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Thực thi tác vụ mỗi khi trang được tải" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php đã được đăng ký tại một dịch vụ webcron. Gọi trang cron.php mỗi phút một lần thông qua giao thức http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Sử dụng dịch vụ cron của hệ thống. Gọi tệp tin cron.php mỗi phút một lần." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Chia sẻ" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Cho phép các ứng dụng sử dụng chia sẻ API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Cho phép người dùng chia sẻ với bất cứ ai" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "hơn" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "ít" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Bạn đã sử dụng %s có sẵn %s " -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Mật khẩu" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Mật khẩu của bạn đã được thay đổi." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Mật khẩu mới" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Tên hiển thị" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Sử dụng địa chỉ này để kết nối ownCloud của bạn trong trình quản lý file của bạn" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 393ee73f61..d79d6e4d0d 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 16c7b0a447..11d8aaccec 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "数据库主机" msgid "Finish setup" msgstr "完成安装" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 152f04b85f..80348c7b7e 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "文件" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "文件" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 104002722e..ea02882e9b 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 18f3f0e942..eb57710602 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index b1697142fa..e0c82ccfdb 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "密码" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "提交" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 与您分享了文件夹 %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "下载" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "上传" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "没有预览可用于" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 12f5d9c90b..6d62c2ec7d 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index dc5c381374..f3f7e9e02d 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "程序" msgid "Admin" msgstr "管理员" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP 下载已关闭" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 3bbdcf2f70..1075c2ceca 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "新增用户时出现错误" msgid "A valid password must be provided" msgstr "请填写有效密码" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Chinese" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "配置注意" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "请双击安装向导。" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "模块“fileinfo”丢失。" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 模块“fileinfo”丢失。我们强烈建议打开此模块来获得 mine 类型检测的最佳结果。" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "区域设置未运作" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "ownCloud 服务器不能把系统区域设置到 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的包来支持“%s”。" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "互联网连接未运作" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "在每个页面载入时执行一项任务" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "分享" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "开启分享API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "允许应用使用分享API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "允许用户通过链接共享内容" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "允许转帖" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "允许用户再次共享已共享的内容" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "允许用户向任何人分享" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "只允许用户向所在群组中的其他用户分享" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "安全" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "强制HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "强制客户端通过加密连接与ownCloud连接" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "日志" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "更多" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "更少" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "版本" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "您已使用%s/%s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "您的密码以变更" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "不能改变你的密码" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "现在的密码" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新密码" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "改变密码" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "显示名称" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "你的email地址" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "输入一个邮箱地址以激活密码恢复功能" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "语言" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "使用此地址来在您的文件管理器中连接您的ownCloud" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 3601a228b6..b901562be8 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 09fbf32f0b..600c110895 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: m13253 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "数据库主机" msgid "Finish setup" msgstr "安装完成" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s 可用。获取更多关于如何升级的信息。" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index f2bc922dc3..efd92f40ae 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -340,11 +340,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "文件" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "文件" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index b1a0711b92..08588336e1 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 05:40+0000\n" -"Last-Translator: Mengz You \n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +65,15 @@ msgid "" msgstr "您的私有密钥无效!也许是您在 ownCloud 系统外更改了密码 (比如,在您的公司目录)。您可以在个人设置里更新您的私钥密码来恢复访问你的加密文件。" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP 模块 OpenSSL 未安装。" +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "请请求您的服务器管理员安装该模块。现在加密应用被禁用。" +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 5dd21339dc..1d0b157fb9 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index e13685265c..1969675a0e 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "密码" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "提交" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "下载" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "上传" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "没有预览" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 6db80b6b71..f5ff36f185 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index fc14be3855..87f97f1d9d 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "应用" msgid "Admin" msgstr "管理" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 00cd695809..bd4e9b0025 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: m13253 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -168,15 +168,15 @@ msgstr "创建用户出错" msgid "A valid password must be provided" msgstr "必须提供合法的密码" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "简体中文" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -185,36 +185,36 @@ msgid "" " webserver document root." msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器根目录以外。" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "设置警告" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "请认真检查安装指南." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "模块'文件信息'丢失" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "本地化无法工作" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -222,11 +222,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "此ownCloud服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "因特网连接无法工作" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -236,102 +236,102 @@ msgid "" " of ownCloud." msgstr "此ownCloud服务器上没有可用的因特网连接. 这意味着某些特性例如挂载外部存储器, 提醒更新或安装第三方应用无法工作. 从远程访问文件和发送提醒电子邮件可能也无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "每个页面加载后执行一个任务" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "共享" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "启用共享API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "允许应用软件使用共享API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接公开共享项目" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "安全" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "强制客户端通过加密连接连接到 ownCloud。" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "请经由HTTPS连接到这个ownCloud实例来启用或禁用强制SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "日志" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "更多" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "更少" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "版本" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "你已使用 %s,有效空间 %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新密码" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "显示名称" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "填写电子邮件地址以启用密码恢复功能" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "语言" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "用该地址来连接文件管理器中的 ownCloud" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 5fe02c6ab5..c7a202b38e 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index d31f5a1d7c..8d2f53e119 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -572,12 +572,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "登出" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 27f801a920..2c176a4382 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index 3937e630ba..7a7dd9fef9 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index f65eda32b5..8915ed5998 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index d260da06ce..29cc944909 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "密碼" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "下載" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "上傳" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index ed9bec990f..11e1c0a3a6 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 42bad4bd89..b214357aa7 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "軟件" msgid "Admin" msgstr "管理" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index cda36614b0..c576c2b799 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新密碼" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "電郵" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 75c0c122c2..5392bcbf5e 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 498f52a12b..f2320794fc 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -574,12 +574,12 @@ msgstr "資料庫主機" msgid "Finish setup" msgstr "完成設定" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s 已經釋出,瞭解更多資訊以進行更新。" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "登出" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 66e1d7fe66..6743ab981d 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-04 07:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 9d0e6b907a..0ad4c062c9 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 60cacfe1a0..0f97c65369 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 49c41d7d1a..810cf32cd3 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "密碼" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "送出" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 和您分享了資料夾 %s " -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "下載" -#: templates/public.php:42 +#: templates/public.php:44 msgid "Upload" msgstr "上傳" -#: templates/public.php:52 +#: templates/public.php:54 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:81 +#: templates/public.php:83 msgid "No preview available for" msgstr "無法預覽" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 2c7cbb8239..42452cc260 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 2a507ad39c..69e868ec9b 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "應用程式" msgid "Admin" msgstr "管理" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 6b6206316d..1339990cb7 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "創建用戶時出現錯誤" msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__語言_名稱__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "安全性警告" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "設定警告" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "請參考安裝指南。" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "遺失 'fileinfo' 模組" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "語系無法運作" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "去連線" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "定期執行" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "當頁面載入時,執行" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php 已經在 webcron 服務當中註冊,請每分鐘透過 HTTP 呼叫 ownCloud 根目錄當中的 cron.php 一次。" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "分享" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "啟用分享 API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "允許 apps 使用分享 API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "允許使用者透過公開的連結分享檔案" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "允許使用者分享其他使用者分享給他的檔案" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "允許使用者與任何人分享檔案" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "安全性" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "強制指定用戶端使用加密的連線連接到 ownCloud" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "請使用 HTTPS 連線到 ownCloud,或是關閉強制使用 SSL 的選項。" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "紀錄" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "更多" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "少" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "版本" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "您已經使用了 %s ,目前可用空間為 %s" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "你的密碼已更改" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "無法變更您的密碼" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新密碼" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "顯示名稱" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "信箱" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "您的電子郵件信箱" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "請填入電子郵件信箱以便回復密碼" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "語言" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 71df9ed211..78ac885617 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 07:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/lb.php b/lib/l10n/lb.php index 889fc3a377..325e3bfa99 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -3,12 +3,16 @@ "Personal" => "Perséinlech", "Settings" => "Astellungen", "Users" => "Benotzer", -"Apps" => "Applicatiounen", +"Apps" => "Applikatiounen", "Admin" => "Admin", "Authentication error" => "Authentifikatioun's Fehler", "Files" => "Dateien", "Text" => "SMS", +"seconds ago" => "Sekonnen hir", +"1 minute ago" => "1 Minutt hir", "1 hour ago" => "vrun 1 Stonn", +"today" => "haut", +"yesterday" => "gëschter", "last month" => "Läschte Mount", "last year" => "Läscht Joer", "years ago" => "Joren hier" From 11172db55b5d180a9c16adb75360050985b9fe60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 09:58:41 +0200 Subject: [PATCH 15/49] handle anonymous upload to reshared folder --- apps/files/ajax/upload.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 8433716dec..fd6aa98154 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -35,6 +35,11 @@ if (empty($_POST['dirToken'])) { isset($_POST['subdir']) ? $_POST['subdir'] : '' ); + // handle reshare + if (!empty($linkItem['parent'])) { + $dir = '/Shared'.$dir; + } + if (!$dir || empty($dir) || $dir === false) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); die(); From 83898e87be3486ecec76ee240a8810ce693be888 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Jul 2013 10:07:23 +0200 Subject: [PATCH 16/49] Merge https://github.com/owncloud/core/pull/3900 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Squashed commit of the following: commit a34098427720c2d0470367cd9698c184d85b8dfd Merge: ccf849b 955646c Author: Björn Schießle Date: Fri Jul 5 09:59:29 2013 +0200 Merge branch 'master' into theme_aware_mail_footer commit ccf849bc6f18d80cdb593e851529b87579fe072b Merge: 8d5fb70 3c1308f Author: Björn Schießle Date: Thu Jul 4 11:03:47 2013 +0200 Merge branch 'master' into theme_aware_mail_footer commit 8d5fb70e6dcb2e2e34dcdf2a883680ef034afeea Author: Björn Schießle Date: Thu Jul 4 10:38:39 2013 +0200 switch to non-static defaults.php commit 88ab2768dcc4ced12c48872c887baa94ad938d62 Merge: e199df8 84c25f9 Author: Björn Schießle Date: Wed Jul 3 16:59:48 2013 +0200 Merge branch 'theme_aware_mail_footer' of github.com:owncloud/core into theme_aware_mail_footer Conflicts: core/templates/altmail.php commit e199df844b5faf80a36d8380a5b0b58025cd425f Author: Björn Schießle Date: Wed Jul 3 16:56:29 2013 +0200 name and slogan should be in one line commit 84c25f9853e1bfbe4ae780371b1353aafb6b15c2 Author: Thomas Müller Date: Mon Jul 1 21:15:35 2013 +0200 no ?> at the end of a file commit 3bd8d38d011f62ce78bcd0c108eb8cf2ce97eb99 Author: Björn Schießle Date: Mon Jul 1 12:58:36 2013 +0200 print url unescaped commit d304ed18c8b7350e92e24565b9b9ba77b519d74c Author: Björn Schießle Date: Mon Jul 1 12:56:05 2013 +0200 make new mail templates aware of different ownCloud themes --- core/templates/altmail.php | 8 ++++---- core/templates/mail.php | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/core/templates/altmail.php b/core/templates/altmail.php index 37dc8eee94..a7df29a244 100644 --- a/core/templates/altmail.php +++ b/core/templates/altmail.php @@ -1,9 +1,9 @@ t("Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!", array($_['user_displayname'], $_['filename'], $_['link']))); ?> -- -ownCloud - t("web services under your control")); -?> -http://ownCloud.org +getName() . ' - ' . $defaults->getSlogan()); ?> +getBaseUrl()); diff --git a/core/templates/mail.php b/core/templates/mail.php index ebeefd5c7e..562ad82e95 100644 --- a/core/templates/mail.php +++ b/core/templates/mail.php @@ -1,3 +1,4 @@ +
@@ -20,10 +21,9 @@ print_unescaped($l->t('Hey there,

just letting you know that %s shared » +getName()); ?> - +getSlogan()); ?> +
getBaseUrl());?> From 13991be5ce6e318670b84458c2cdaa6878ad63cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 10:53:59 +0200 Subject: [PATCH 17/49] no anonymous upload on files only folders --- apps/files_sharing/public.php | 3 +++ core/js/share.js | 12 +++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index fb18bc2624..96fe12fc86 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -151,6 +151,9 @@ if (isset($path)) { if (\OCP\App::isEnabled('files_encryption')) { $allowPublicUploadEnabled = false; } + if (isset($file)) { + $allowPublicUploadEnabled = false; + } $tmpl->assign('allowPublicUploadEnabled', $allowPublicUploadEnabled); $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); diff --git a/core/js/share.js b/core/js/share.js index 588202d227..778a9f8e20 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -181,11 +181,13 @@ OC.Share={ html += '
'; html += ''; html += '
'; - html += ''; - html += ''; + if (itemType == 'folder') { + html += ''; + } + html += ''; html += ''; html += ''; html += ''; From 27c0cc7fda6c722a201ac8a549b855663cf9c68a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 11:23:08 +0200 Subject: [PATCH 18/49] no anonymous upload on read-only folders --- core/js/share.js | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 588202d227..9494637c3d 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -163,10 +163,10 @@ OC.Share={ var allowPublicUploadStatus = false; $.each(data.shares, function(key, value) { - if (allowPublicUploadStatus) { - return true; - } - allowPublicUploadStatus = (value.permissions & OC.PERMISSION_CREATE) ? true : false; + if (allowPublicUploadStatus) { + return true; + } + allowPublicUploadStatus = (value.permissions & OC.PERMISSION_CREATE) ? true : false; }); html += ''; @@ -181,11 +181,13 @@ OC.Share={ html += '
'; html += ''; html += '
'; - html += ''; - html += ''; + if (possiblePermissions & OC.PERMISSION_CREATE) { + html += ''; + } + html += ''; html += ''; html += ''; html += ''; From 0202d47f7ad4a65d4e539421c4f5899404b22bf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 11:30:53 +0200 Subject: [PATCH 19/49] fixing Notice: Undefined index: isPublic --- apps/files/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files/index.php b/apps/files/index.php index 640c28c007..2338cf439e 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -137,5 +137,6 @@ if ($needUpgrade) { $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']); + $tmpl->assign('isPublic', false); $tmpl->printPage(); } From 0c32f668998bfa95ae9a36bbddcc6263b2a98701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 12:15:47 +0200 Subject: [PATCH 20/49] get the real physical folder name for anonymous upload --- apps/files/ajax/upload.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 8433716dec..4b015e4d1f 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -18,7 +18,6 @@ if (empty($_POST['dirToken'])) { } } else { $linkItem = OCP\Share::getShareByToken($_POST['dirToken']); - if ($linkItem === false) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Invalid Token'))))); die(); @@ -27,11 +26,17 @@ if (empty($_POST['dirToken'])) { if (!($linkItem['permissions'] & OCP\PERMISSION_CREATE)) { OCP\JSON::checkLoggedIn(); } else { + // translate linkItem to the real folder name on the file system + $sharedItem = OCP\Share::getItemShared($linkItem['item_type'], $linkItem['item_source']); + if (!$sharedItem || empty($sharedItem) || $sharedItem === false) { + OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); + die(); + } // The token defines the target directory (security reasons) $dir = sprintf( "/%s/%s", - $linkItem['file_target'], + array_pop($sharedItem)['path'], isset($_POST['subdir']) ? $_POST['subdir'] : '' ); From d1d68855850022ee4dd91105f00a947029f2e4c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 13:22:38 +0200 Subject: [PATCH 21/49] php 5.3 compliant now --- apps/files/ajax/upload.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 4b015e4d1f..733ed95974 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -34,9 +34,10 @@ if (empty($_POST['dirToken'])) { } // The token defines the target directory (security reasons) + $sharedItem = array_pop($sharedItem); $dir = sprintf( "/%s/%s", - array_pop($sharedItem)['path'], + $sharedItem['path'], isset($_POST['subdir']) ? $_POST['subdir'] : '' ); From 352c1415be55ae5797685d2ea22fcd07cdfbf4ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 13:45:21 +0200 Subject: [PATCH 22/49] proper fix for getting the shared item if no user is logged in --- apps/files/ajax/upload.php | 9 +++++---- lib/public/share.php | 13 ++++++++++++- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 733ed95974..54604d1056 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -26,15 +26,18 @@ if (empty($_POST['dirToken'])) { if (!($linkItem['permissions'] & OCP\PERMISSION_CREATE)) { OCP\JSON::checkLoggedIn(); } else { + // Setup FS with owner + OC_Util::tearDownFS(); + OC_Util::setupFS($linkItem['uid_owner']); + // translate linkItem to the real folder name on the file system - $sharedItem = OCP\Share::getItemShared($linkItem['item_type'], $linkItem['item_source']); + $sharedItem = OCP\Share::getSharedItem($linkItem['item_type'], $linkItem['item_source'], $linkItem['uid_owner']); if (!$sharedItem || empty($sharedItem) || $sharedItem === false) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); die(); } // The token defines the target directory (security reasons) - $sharedItem = array_pop($sharedItem); $dir = sprintf( "/%s/%s", $sharedItem['path'], @@ -45,8 +48,6 @@ if (empty($_POST['dirToken'])) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); die(); } - // Setup FS with owner - OC_Util::setupFS($linkItem['uid_owner']); } } diff --git a/lib/public/share.php b/lib/public/share.php index de7025d7b1..28878c2c86 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -312,11 +312,22 @@ class Share { * @return Return depends on format */ public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, - $parameters = null, $includeCollections = false) { + $parameters = null, $includeCollections = false) { return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, $parameters, -1, $includeCollections); } + /** + * @param $itemType + * @param $itemSource + * @param $uid_owner + * @return mixed + */ + public static function getSharedItem($itemType, $itemSource, $uid_owner) { + return self::getItems($itemType, $itemSource, null, null, $uid_owner, self::FORMAT_NONE, + null, 1, false); + } + /** * Get all users an item is shared with * @param string Item type From 00987feda1b9d4c4d19b41291275e00d5d519f9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 5 Jul 2013 14:05:42 +0200 Subject: [PATCH 23/49] fix insertIfNotExist return value, update doc and corresponding test --- lib/db.php | 7 ++----- tests/lib/db.php | 28 ++++++++++++++-------------- 2 files changed, 16 insertions(+), 19 deletions(-) diff --git a/lib/db.php b/lib/db.php index 4d6788f2bd..d5ef424876 100644 --- a/lib/db.php +++ b/lib/db.php @@ -702,7 +702,7 @@ class OC_DB { * @brief Insert a row if a matching row doesn't exists. * @param string $table. The table to insert into in the form '*PREFIX*tableName' * @param array $input. An array of fieldname/value pairs - * @returns The return value from PDOStatementWrapper->execute() + * @returns int number of updated rows */ public static function insertIfNotExist($table, $input) { self::connect(); @@ -736,7 +736,7 @@ class OC_DB { . implode('`,`', array_keys($input)) . '`) VALUES(' . str_repeat('?,', count($input)-1).'? ' . ')'; } else { - return true; + return 0; //no rows updated } } elseif( $type == 'pgsql' || $type == 'oci' || $type == 'mysql' || $type == 'mssql') { $query = 'INSERT INTO `' .$table . '` (`' @@ -757,9 +757,6 @@ class OC_DB { } catch(PDOException $e) { OC_Template::printExceptionErrorPage( $e ); } - if ($result === 0) { - return true; - } return $result; } diff --git a/tests/lib/db.php b/tests/lib/db.php index 0ba7d5d4b0..69e3542f92 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -40,7 +40,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->assertFalse((bool)$row); //PDO returns false, MDB2 returns null $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); $result = $query->execute(array('fullname test', 'uri_1')); - $this->assertEquals('1', $result); + $this->assertEquals(1, $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_1')); $this->assertTrue((bool)$result); @@ -57,7 +57,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testNOW() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (NOW(),?)'); $result = $query->execute(array('uri_2')); - $this->assertEquals('1', $result); + $this->assertEquals(1, $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_2')); $this->assertTrue((bool)$result); @@ -66,7 +66,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testUNIX_TIMESTAMP() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (UNIX_TIMESTAMP(),?)'); $result = $query->execute(array('uri_3')); - $this->assertEquals('1', $result); + $this->assertEquals(1, $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_3')); $this->assertTrue((bool)$result); @@ -74,11 +74,11 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testinsertIfNotExist() { $categoryentries = array( - array('user' => 'test', 'type' => 'contact', 'category' => 'Family'), - array('user' => 'test', 'type' => 'contact', 'category' => 'Friends'), - array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers'), - array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers'), - array('user' => 'test', 'type' => 'contact', 'category' => 'School'), + array('user' => 'test', 'type' => 'contact', 'category' => 'Family', 'expectedResult' => 1), + array('user' => 'test', 'type' => 'contact', 'category' => 'Friends', 'expectedResult' => 1), + array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers', 'expectedResult' => 1), + array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers', 'expectedResult' => 0), + array('user' => 'test', 'type' => 'contact', 'category' => 'School', 'expectedResult' => 1), ); foreach($categoryentries as $entry) { @@ -88,13 +88,13 @@ class Test_DB extends PHPUnit_Framework_TestCase { 'type' => $entry['type'], 'category' => $entry['category'], )); - $this->assertTrue((bool)$result); + $this->assertEquals($entry['expectedResult'], $result); } $query = OC_DB::prepare('SELECT * FROM `*PREFIX*'.$this->table3.'`'); $result = $query->execute(); $this->assertTrue((bool)$result); - $this->assertEquals('4', $result->numRows()); + $this->assertEquals(4, $result->numRows()); } public function testinsertIfNotExistDontOverwrite() { @@ -105,14 +105,14 @@ class Test_DB extends PHPUnit_Framework_TestCase { // Normal test to have same known data inserted. $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)'); $result = $query->execute(array($fullname, $uri, $carddata)); - $this->assertEquals('1', $result); + $this->assertEquals(1, $result); $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); $row = $result->fetchRow(); $this->assertArrayHasKey('carddata', $row); $this->assertEquals($carddata, $row['carddata']); - $this->assertEquals('1', $result->numRows()); + $this->assertEquals(1, $result->numRows()); // Try to insert a new row $result = OC_DB::insertIfNotExist('*PREFIX*'.$this->table2, @@ -120,7 +120,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { 'fullname' => $fullname, 'uri' => $uri, )); - $this->assertTrue((bool)$result); + $this->assertEquals(0, $result); $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); @@ -130,7 +130,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { // Test that previously inserted data isn't overwritten $this->assertEquals($carddata, $row['carddata']); // And that a new row hasn't been inserted. - $this->assertEquals('1', $result->numRows()); + $this->assertEquals(1, $result->numRows()); } } From 3f5eb762b6d7572b68c77f0009a76ff9b1f8d946 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 5 Jul 2013 14:51:22 +0200 Subject: [PATCH 24/49] Scanner test: ensure mtime in the cache is the same as on the storage to prevent random failures --- tests/lib/files/cache/scanner.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 042bf8991f..263ceadccc 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -132,6 +132,7 @@ class Scanner extends \PHPUnit_Framework_TestCase { $this->scanner->scan(''); $oldData = $this->cache->get(''); $this->storage->unlink('folder/bar.txt'); + $this->cache->put('folder', array('mtime' => $this->storage->filemtime('folder'))); $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW, \OC\Files\Cache\Scanner::REUSE_SIZE); $newData = $this->cache->get(''); $this->assertNotEquals($oldData['etag'], $newData['etag']); From 0c2ebb984e5d3764997a96cad54a40464623aeb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 15:07:05 +0200 Subject: [PATCH 25/49] adding tipsy to the upload button showing the max upload and restoring client side upload size validation --- apps/files_sharing/js/public.js | 2 + apps/files_sharing/templates/public.php | 142 ++++++++++++------------ 2 files changed, 75 insertions(+), 69 deletions(-) diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 0244f392a0..294223aa09 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -11,6 +11,8 @@ var form_data; $(document).ready(function() { + $('#data-upload-form').tipsy({gravity:'ne', fade:true}); + if (typeof FileActions !== 'undefined') { var mimetype = $('#mimetype').val(); // Show file preview if previewer is available, images are already handled by the template diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 56ed4ca168..e8bf80b872 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -1,5 +1,5 @@
- +
@@ -9,88 +9,92 @@
+ +
-
- - - - -
- -
- -
- -
+
+ + - + +
+ +
+ +
+ +
+ + + - -
-
-

- getLongFooter()); ?> -

-
+
+
+

+ getLongFooter()); ?> +

+
From c1cf829b9d3b54b9a798a30ee10d3c496f871958 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 5 Jul 2013 15:07:15 +0200 Subject: [PATCH 26/49] OC_Config: handle failure of glob('*.config.php') --- lib/config.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/config.php b/lib/config.php index fcd0a9d7c3..f1c139f22b 100644 --- a/lib/config.php +++ b/lib/config.php @@ -132,6 +132,9 @@ class OC_Config{ // read all file in config dir ending by config.php $config_files = glob( OC::$SERVERROOT."/config/*.config.php"); + if (!is_array($config_files)) { + $config_files = array(); + } //Filter only regular files $config_files = array_filter($config_files, 'is_file'); From 18b11f76b1e1a4e77ccf5e618f5312538db93532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 15:27:14 +0200 Subject: [PATCH 27/49] fixing === and ident --- core/js/share.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index ced1e0aa8c..21e352ee1c 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -181,12 +181,12 @@ OC.Share={ html += '
'; html += ''; html += '
'; - if (itemType == 'folder' && (possiblePermissions & OC.PERMISSION_CREATE)) { - html += ''; - } + if (itemType === 'folder' && (possiblePermissions & OC.PERMISSION_CREATE)) { + html += ''; + } html += '
'; html += ''; html += ''; From 212ea0508d05f881d01df4f5b2ed38133bdff359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 5 Jul 2013 15:39:57 +0200 Subject: [PATCH 28/49] update comment --- lib/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db.php b/lib/db.php index d5ef424876..efea9e40a8 100644 --- a/lib/db.php +++ b/lib/db.php @@ -1047,7 +1047,7 @@ class PDOStatementWrapper{ } /** - * make execute return the result instead of a bool + * make execute return the result or updated row count instead of a bool */ public function execute($input=array()) { if(OC_Config::getValue( "log_query", false)) { From 3e4dcafa892b7fe73dcd9afba65ded290dd54734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 12:21:54 +0200 Subject: [PATCH 29/49] handle system wide mount points --- apps/files_encryption/lib/keymanager.php | 49 +++++++++++++++++++----- apps/files_encryption/lib/util.php | 30 +++++++++++---- 2 files changed, 62 insertions(+), 17 deletions(-) diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index e911c1785d..084abdb2c2 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -126,7 +126,12 @@ class Keymanager { $util = new Util($view, \OCP\User::getUser()); list($owner, $filename) = $util->getUidAndFilename($path); - $basePath = '/' . $owner . '/files_encryption/keyfiles'; + // in case of system wide mount points the keys are stored directly in the data directory + if (self::isSystemWideMountPoint($filename)) { + $basePath = '/files_encryption/keyfiles'; + } else { + $basePath = '/' . $owner . '/files_encryption/keyfiles'; + } $targetPath = self::keySetPreparation($view, $filename, $basePath, $owner); @@ -233,7 +238,12 @@ class Keymanager { list($owner, $filename) = $util->getUidAndFilename($filePath); $filePath_f = ltrim($filename, '/'); - $keyfilePath = '/' . $owner . '/files_encryption/keyfiles/' . $filePath_f . '.key'; + // in case of system wide mount points the keys are stored directly in the data directory + if (self::isSystemWideMountPoint($filename)) { + $keyfilePath = '/files_encryption/keyfiles/' . $filePath_f . '.key'; + } else { + $keyfilePath = '/' . $owner . '/files_encryption/keyfiles/' . $filePath_f . '.key'; + } $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; @@ -341,19 +351,20 @@ class Keymanager { list($owner, $filename) = $util->getUidAndFilename($path); - $basePath = '/' . $owner . '/files_encryption/share-keys'; + // in case of system wide mount points the keys are stored directly in the data directory + if (self::isSystemWideMountPoint($filename)) { + $basePath = '/files_encryption/share-keys'; + } else { + $basePath = '/' . $owner . '/files_encryption/share-keys'; + } $shareKeyPath = self::keySetPreparation($view, $filename, $basePath, $owner); // try reusing key file if part file if (self::isPartialFilePath($shareKeyPath)) { - $writePath = $basePath . '/' . self::fixPartialFilePath($shareKeyPath) . '.' . $userId . '.shareKey'; - } else { - $writePath = $basePath . '/' . $shareKeyPath . '.' . $userId . '.shareKey'; - } $proxyStatus = \OC_FileProxy::$enabled; @@ -440,8 +451,13 @@ class Keymanager { $util = new Util($view, \OCP\User::getUser()); list($owner, $filename) = $util->getUidAndFilename($filePath); - $shareKeyPath = \OC\Files\Filesystem::normalizePath( - '/' . $owner . '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey'); + + // in case of system wide mount points the keys are stored directly in the data directory + if (self::isSystemWideMountPoint($filename)) { + $shareKeyPath = '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey'; + } else { + $shareKeyPath = '/' . $owner . '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey'; + } if ($view->file_exists($shareKeyPath)) { @@ -568,4 +584,19 @@ class Keymanager { return $targetPath; } + + /** + * @brief check if the file is stored on a system wide mount point + * @param $path relative to /data/user with leading '/' + * @return boolean + */ + private static function isSystemWideMountPoint($path) { + $mount = OC_Mount_Config::getSystemMountPoints(); + foreach ($mount as $mountPoint => $data) { + if ($mountPoint == substr($path, 1, strlen($mountPoint))) { + return true; + } + } + return false; + } } \ No newline at end of file diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index b3de85254e..a5290013a4 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -992,13 +992,9 @@ class Util { \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled') && $this->recoveryEnabledForUser() ) { - $recoveryEnabled = true; - } else { - $recoveryEnabled = false; - } // Make sure that a share key is generated for the owner too @@ -1019,20 +1015,24 @@ class Util { // If recovery is enabled, add the // Admin UID to list of users to share to if ($recoveryEnabled) { - // Find recoveryAdmin user ID $recoveryKeyId = \OC_Appconfig::getValue('files_encryption', 'recoveryKeyId'); - // Add recoveryAdmin to list of users sharing $userIds[] = $recoveryKeyId; - } // add current user if given if ($currentUserId !== false) { - $userIds[] = $currentUserId; + } + // check if it is a group mount + $mount = OC_Mount_Config::getSystemMountPoints(); + foreach ($mount as $mountPoint => $data) { + if ($mountPoint == substr($ownerPath, 1, strlen($mountPoint))) { + $userIds = array_merge($userIds, + $this->getUserWithAccessToMountPoint($data['applicable']['users'], $data['applicable']['groups'])); + } } // Remove duplicate UIDs @@ -1042,6 +1042,20 @@ class Util { } + private function getUserWithAccessToMountPoint($users, $groups) { + $result = array(); + if (in_array('all', $users)) { + $result = \OCP\User::getUsers(); + } else { + $result = array_merge($result, $users); + foreach ($groups as $group) { + $result = array_merge($result, \OC_Group::usersInGroup($group)); + } + } + + return $result; + } + /** * @brief start migration mode to initially encrypt users data * @return boolean From 2e56f0e2f8b653a36a811ea4669b1b36fc876f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 13:36:43 +0200 Subject: [PATCH 30/49] fix path to OC_Mount_Config --- apps/files_encryption/lib/keymanager.php | 2 +- apps/files_encryption/lib/util.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 084abdb2c2..e1bf59d80b 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -591,7 +591,7 @@ class Keymanager { * @return boolean */ private static function isSystemWideMountPoint($path) { - $mount = OC_Mount_Config::getSystemMountPoints(); + $mount = \OC_Mount_Config::getSystemMountPoints(); foreach ($mount as $mountPoint => $data) { if ($mountPoint == substr($path, 1, strlen($mountPoint))) { return true; diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index a5290013a4..2bf17dcc22 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1027,7 +1027,7 @@ class Util { } // check if it is a group mount - $mount = OC_Mount_Config::getSystemMountPoints(); + $mount = \OC_Mount_Config::getSystemMountPoints(); foreach ($mount as $mountPoint => $data) { if ($mountPoint == substr($ownerPath, 1, strlen($mountPoint))) { $userIds = array_merge($userIds, From f2de4cb3422742e7c5c91f6bcd8c2024393bbd58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 14:15:53 +0200 Subject: [PATCH 31/49] some performance improvements, check for system wide mounts only once while writing share keys --- apps/files_encryption/lib/keymanager.php | 85 ++++++++++-------------- 1 file changed, 35 insertions(+), 50 deletions(-) diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index e1bf59d80b..898ea945a6 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -335,17 +335,39 @@ class Keymanager { * @brief store share key * * @param \OC_FilesystemView $view - * @param string $path relative path of the file, including filename - * @param $userId + * @param string $path where the share key is stored * @param $shareKey - * @internal param string $key - * @internal param string $dbClassName * @return bool true/false * @note The keyfile is not encrypted here. Client code must * asymmetrically encrypt the keyfile before passing it to this method */ - public static function setShareKey(\OC_FilesystemView $view, $path, $userId, $shareKey) { + private static function setShareKey(\OC_FilesystemView $view, $path, $shareKey) { + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; + + $result = $view->file_put_contents($path, $shareKey); + + \OC_FileProxy::$enabled = $proxyStatus; + + if (is_int($result) && $result > 0) { + return true; + } else { + return false; + } + } + + /** + * @brief store multiple share keys for a single file + * @param \OC_FilesystemView $view + * @param $path + * @param array $shareKeys + * @return bool + */ + public static function setShareKeys(\OC_FilesystemView $view, $path, array $shareKeys) { + + // $shareKeys must be an array with the following format: + // [userId] => [encrypted key] // Here we need the currently logged in user, while userId can be a different user $util = new Util($view, \OCP\User::getUser()); @@ -360,63 +382,26 @@ class Keymanager { $shareKeyPath = self::keySetPreparation($view, $filename, $basePath, $owner); - // try reusing key file if part file - if (self::isPartialFilePath($shareKeyPath)) { - $writePath = $basePath . '/' . self::fixPartialFilePath($shareKeyPath) . '.' . $userId . '.shareKey'; - } else { - $writePath = $basePath . '/' . $shareKeyPath . '.' . $userId . '.shareKey'; - } - - $proxyStatus = \OC_FileProxy::$enabled; - \OC_FileProxy::$enabled = false; - - $result = $view->file_put_contents($writePath, $shareKey); - - \OC_FileProxy::$enabled = $proxyStatus; - - if ( - is_int($result) - && $result > 0 - ) { - - return true; - - } else { - - return false; - - } - - } - - /** - * @brief store multiple share keys for a single file - * @param \OC_FilesystemView $view - * @param $path - * @param array $shareKeys - * @return bool - */ - public static function setShareKeys(\OC_FilesystemView $view, $path, array $shareKeys) { - - // $shareKeys must be an array with the following format: - // [userId] => [encrypted key] - $result = true; foreach ($shareKeys as $userId => $shareKey) { - if (!self::setShareKey($view, $path, $userId, $shareKey)) { + // try reusing key file if part file + if (self::isPartialFilePath($shareKeyPath)) { + $writePath = $basePath . '/' . self::fixPartialFilePath($shareKeyPath) . '.' . $userId . '.shareKey'; + } else { + $writePath = $basePath . '/' . $shareKeyPath . '.' . $userId . '.shareKey'; + } + + if (!self::setShareKey($view, $writePath, $shareKey)) { // If any of the keys are not set, flag false $result = false; - } - } // Returns false if any of the keys weren't set return $result; - } /** From eb2587a08ffc53efe284a06832f0a946d17aebf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 14:25:00 +0200 Subject: [PATCH 32/49] move isSystemWideMountPoint() to util.php --- apps/files_encryption/lib/keymanager.php | 23 ++++------------------- apps/files_encryption/lib/util.php | 15 +++++++++++++++ 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 898ea945a6..d43a0c2891 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -127,7 +127,7 @@ class Keymanager { list($owner, $filename) = $util->getUidAndFilename($path); // in case of system wide mount points the keys are stored directly in the data directory - if (self::isSystemWideMountPoint($filename)) { + if ($util->isSystemWideMountPoint($filename)) { $basePath = '/files_encryption/keyfiles'; } else { $basePath = '/' . $owner . '/files_encryption/keyfiles'; @@ -239,7 +239,7 @@ class Keymanager { $filePath_f = ltrim($filename, '/'); // in case of system wide mount points the keys are stored directly in the data directory - if (self::isSystemWideMountPoint($filename)) { + if ($util->isSystemWideMountPoint($filename)) { $keyfilePath = '/files_encryption/keyfiles/' . $filePath_f . '.key'; } else { $keyfilePath = '/' . $owner . '/files_encryption/keyfiles/' . $filePath_f . '.key'; @@ -374,7 +374,7 @@ class Keymanager { list($owner, $filename) = $util->getUidAndFilename($path); // in case of system wide mount points the keys are stored directly in the data directory - if (self::isSystemWideMountPoint($filename)) { + if ($util->isSystemWideMountPoint($filename)) { $basePath = '/files_encryption/share-keys'; } else { $basePath = '/' . $owner . '/files_encryption/share-keys'; @@ -438,7 +438,7 @@ class Keymanager { list($owner, $filename) = $util->getUidAndFilename($filePath); // in case of system wide mount points the keys are stored directly in the data directory - if (self::isSystemWideMountPoint($filename)) { + if ($util->isSystemWideMountPoint($filename)) { $shareKeyPath = '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey'; } else { $shareKeyPath = '/' . $owner . '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey'; @@ -569,19 +569,4 @@ class Keymanager { return $targetPath; } - - /** - * @brief check if the file is stored on a system wide mount point - * @param $path relative to /data/user with leading '/' - * @return boolean - */ - private static function isSystemWideMountPoint($path) { - $mount = \OC_Mount_Config::getSystemMountPoints(); - foreach ($mount as $mountPoint => $data) { - if ($mountPoint == substr($path, 1, strlen($mountPoint))) { - return true; - } - } - return false; - } } \ No newline at end of file diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 2bf17dcc22..7228d2a647 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1561,4 +1561,19 @@ class Util { return $relativePath; } + /** + * @brief check if the file is stored on a system wide mount point + * @param $path relative to /data/user with leading '/' + * @return boolean + */ + public function isSystemWideMountPoint($path) { + $mount = \OC_Mount_Config::getSystemMountPoints(); + foreach ($mount as $mountPoint => $data) { + if ($mountPoint == substr($path, 1, strlen($mountPoint))) { + return true; + } + } + return false; + } + } From abc2ee2e07e1e4f73e6e50aa3855d15ca92f6468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 14:42:49 +0200 Subject: [PATCH 33/49] handle rename correctly for system wide mounts --- apps/files_encryption/hooks/hooks.php | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 197982010f..96f06b154f 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -476,10 +476,19 @@ class Hooks { $util = new Util($view, $userId); // Format paths to be relative to user files dir - $oldKeyfilePath = \OC\Files\Filesystem::normalizePath( - $userId . '/' . 'files_encryption' . '/' . 'keyfiles' . '/' . $params['oldpath']); - $newKeyfilePath = \OC\Files\Filesystem::normalizePath( - $userId . '/' . 'files_encryption' . '/' . 'keyfiles' . '/' . $params['newpath']); + if ($util->isSystemWideMountPoint($params['oldpath'])) { + $baseDir = 'files_encryption/'; + $oldKeyfilePath = $baseDir . 'keyfiles/' . $params['oldpath']; + } else { + $baseDir = $userId . '/' . 'files_encryption/'; + $oldKeyfilePath = $baseDir . 'keyfiles/' . $params['oldpath']; + } + + if ($util->isSystemWideMountPoint($params['newpath'])) { + $newKeyfilePath = $baseDir . 'keyfiles/' . $params['newpath']; + } else { + $newKeyfilePath = $baseDir . 'keyfiles/' . $params['newpath']; + } // add key ext if this is not an folder if (!$view->is_dir($oldKeyfilePath)) { @@ -487,7 +496,7 @@ class Hooks { $newKeyfilePath .= '.key'; // handle share-keys - $localKeyPath = $view->getLocalFile($userId . '/files_encryption/share-keys/' . $params['oldpath']); + $localKeyPath = $view->getLocalFile($baseDir . 'share-keys/' . $params['oldpath']); $matches = glob(preg_quote($localKeyPath) . '*.shareKey'); foreach ($matches as $src) { $dst = \OC\Files\Filesystem::normalizePath(str_replace($params['oldpath'], $params['newpath'], $src)); @@ -502,10 +511,8 @@ class Hooks { } else { // handle share-keys folders - $oldShareKeyfilePath = \OC\Files\Filesystem::normalizePath( - $userId . '/' . 'files_encryption' . '/' . 'share-keys' . '/' . $params['oldpath']); - $newShareKeyfilePath = \OC\Files\Filesystem::normalizePath( - $userId . '/' . 'files_encryption' . '/' . 'share-keys' . '/' . $params['newpath']); + $oldShareKeyfilePath = $baseDir . 'share-keys/' . $params['oldpath']; + $newShareKeyfilePath = $baseDir . 'share-keys/' . $params['newpath']; // create destination folder if not exists if (!$view->file_exists(dirname($newShareKeyfilePath))) { From 3043dbfb95b7ea84d2d3478aef7cc3c28c8d4b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 16:03:03 +0200 Subject: [PATCH 34/49] delete file keys from the correct location --- apps/files_encryption/lib/keymanager.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index d43a0c2891..0f60884374 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -277,7 +277,14 @@ class Keymanager { public static function deleteFileKey(\OC_FilesystemView $view, $userId, $path) { $trimmed = ltrim($path, '/'); - $keyPath = '/' . $userId . '/files_encryption/keyfiles/' . $trimmed; + + $util = new Util($view, \OCP\User::getUser()); + + if($util->isSystemWideMountPoint($path)) { + $keyPath = '/files_encryption/keyfiles/' . $trimmed; + } else { + $keyPath = '/' . $userId . '/files_encryption/keyfiles/' . $trimmed; + } $result = false; From af2cd6f5418078e813e4b3cad27cc859273592de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 16:41:24 +0200 Subject: [PATCH 35/49] always return normalized path --- apps/files_encryption/lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 7228d2a647..00b3192db8 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1193,7 +1193,7 @@ class Util { return array( $fileOwnerUid, - $filename + \OC_Filesystem::normalizePath($filename) ); } From 93730a090be9587a5b6c52fe52afaba0a48be1e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 16:41:51 +0200 Subject: [PATCH 36/49] del share keys from correct location --- apps/files_encryption/lib/keymanager.php | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 0f60884374..8de1d41364 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -475,10 +475,19 @@ class Keymanager { */ public static function delAllShareKeys(\OC_FilesystemView $view, $userId, $filePath) { - if ($view->is_dir($userId . '/files/' . $filePath)) { - $view->unlink($userId . '/files_encryption/share-keys/' . $filePath); + $util = new util($view, $userId); + + if ($util->isSystemWideMountPoint($filePath)) { + $baseDir = '/files_encryption/share-keys/'; } else { - $localKeyPath = $view->getLocalFile($userId . '/files_encryption/share-keys/' . $filePath); + $baseDir = $userId . '/files_encryption/share-keys/'; + } + + + if ($view->is_dir($userId . '/files/' . $filePath)) { + $view->unlink($baseDir . $filePath); + } else { + $localKeyPath = $view->getLocalFile($baseDir . $filePath); $matches = glob(preg_quote($localKeyPath) . '*.shareKey'); foreach ($matches as $ma) { $result = unlink($ma); @@ -503,7 +512,11 @@ class Keymanager { list($owner, $filename) = $util->getUidAndFilename($filePath); - $shareKeyPath = \OC\Files\Filesystem::normalizePath('/' . $owner . '/files_encryption/share-keys/' . $filename); + if ($util->isSystemWideMountPoint($filename)) { + $shareKeyPath = \OC\Files\Filesystem::normalizePath('/files_encryption/share-keys/' . $filename); + } else { + $shareKeyPath = \OC\Files\Filesystem::normalizePath('/' . $owner . '/files_encryption/share-keys/' . $filename); + } if ($view->is_dir($shareKeyPath)) { From f9c337dd2149248be717f870bdba79ac21868bbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 16:50:10 +0200 Subject: [PATCH 37/49] only escape glob pattern --- apps/files_encryption/hooks/hooks.php | 3 ++- apps/files_encryption/lib/keymanager.php | 10 +++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 96f06b154f..c26119b6c2 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -497,7 +497,8 @@ class Hooks { // handle share-keys $localKeyPath = $view->getLocalFile($baseDir . 'share-keys/' . $params['oldpath']); - $matches = glob(preg_quote($localKeyPath) . '*.shareKey'); + $escapedPath = preg_replace('/(\*|\?|\[)/', '[$1]', $localKeyPath); + $matches = glob($escapedPath . '*.shareKey'); foreach ($matches as $src) { $dst = \OC\Files\Filesystem::normalizePath(str_replace($params['oldpath'], $params['newpath'], $src)); diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 8de1d41364..da2ee380e8 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -488,7 +488,8 @@ class Keymanager { $view->unlink($baseDir . $filePath); } else { $localKeyPath = $view->getLocalFile($baseDir . $filePath); - $matches = glob(preg_quote($localKeyPath) . '*.shareKey'); + $escapedPath = preg_replace('/(\*|\?|\[)/', '[$1]', $localKeyPath); + $matches = glob($escapedPath . '*.shareKey'); foreach ($matches as $ma) { $result = unlink($ma); if (!$result) { @@ -547,7 +548,10 @@ class Keymanager { */ private static function recursiveDelShareKeys($dir, $userIds) { foreach ($userIds as $userId) { - $matches = glob(preg_quote($dir) . '/*' . preg_quote('.' . $userId . '.shareKey')); + $extension = '.' . $userId . '.shareKey'; + $escapedDir = preg_replace('/(\*|\?|\[)/', '[$1]', $dir); + $escapedExtension = preg_replace('/(\*|\?|\[)/', '[$1]', $extension); + $matches = glob($escapedDir . '/*' . $escapedExtension); } /** @var $matches array */ foreach ($matches as $ma) { @@ -556,7 +560,7 @@ class Keymanager { 'Could not delete shareKey; does not exist: "' . $ma . '"', \OCP\Util::ERROR); } } - $subdirs = $directories = glob(preg_quote($dir) . '/*', GLOB_ONLYDIR); + $subdirs = $directories = glob($escapedDir . '/*', GLOB_ONLYDIR); foreach ($subdirs as $subdir) { self::recursiveDelShareKeys($subdir, $userIds); } From ae30eb48f26d5f7bf3f7cf83e9ef56ca9cdbcf3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 17:17:41 +0200 Subject: [PATCH 38/49] make trash bin aware of system wide mounts with respect to encryption keys --- apps/files_trashbin/lib/trash.php | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 1235d9d2ee..b9d900dfab 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -171,13 +171,19 @@ class Trashbin { list($owner, $ownerPath) = self::getUidAndFilename($file_path); + $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $user); // disable proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - // retain key files - $keyfile = \OC\Files\Filesystem::normalizePath($owner . '/files_encryption/keyfiles/' . $ownerPath); + if ($util->isSystemWideMountPoint($ownerPath)) { + $baseDir = '/files_encryption/'; + } else { + $baseDir = $owner . '/files_encryption/'; + } + + $keyfile = \OC\Files\Filesystem::normalizePath($baseDir . '/keyfiles/' . $ownerPath); if ($rootView->is_dir($keyfile) || $rootView->file_exists($keyfile . '.key')) { // move keyfiles @@ -191,7 +197,7 @@ class Trashbin { } // retain share keys - $sharekeys = \OC\Files\Filesystem::normalizePath($owner . '/files_encryption/share-keys/' . $ownerPath); + $sharekeys = \OC\Files\Filesystem::normalizePath($baseDir . '/share-keys/' . $ownerPath); if ($rootView->is_dir($sharekeys)) { $size += self::calculateSize(new \OC\Files\View($sharekeys)); @@ -403,6 +409,14 @@ class Trashbin { list($owner, $ownerPath) = self::getUidAndFilename($target); + $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $user); + + if ($util->isSystemWideMountPoint($ownerPath)) { + $baseDir = '/files_encryption/'; + } else { + $baseDir = $owner . '/files_encryption/'; + } + $path_parts = pathinfo($file); $source_location = $path_parts['dirname']; @@ -432,18 +446,18 @@ class Trashbin { // handle keyfiles $size += self::calculateSize(new \OC\Files\View($keyfile)); - $rootView->rename($keyfile, $owner . '/files_encryption/keyfiles/' . $ownerPath); + $rootView->rename($keyfile, $baseDir . '/keyfiles/' . $ownerPath); // handle share-keys if ($timestamp) { $sharekey .= '.d' . $timestamp; } $size += self::calculateSize(new \OC\Files\View($sharekey)); - $rootView->rename($sharekey, $owner . '/files_encryption/share-keys/' . $ownerPath); + $rootView->rename($sharekey, $baseDir . '/share-keys/' . $ownerPath); } else { // handle keyfiles $size += $rootView->filesize($keyfile); - $rootView->rename($keyfile, $owner . '/files_encryption/keyfiles/' . $ownerPath . '.key'); + $rootView->rename($keyfile, $baseDir . '/keyfiles/' . $ownerPath . '.key'); // handle share-keys $ownerShareKey = \OC\Files\Filesystem::normalizePath($user . '/files_trashbin/share-keys/' . $source_location . '/' . $filename . '.' . $user . '.shareKey'); @@ -454,7 +468,7 @@ class Trashbin { $size += $rootView->filesize($ownerShareKey); // move only owners key - $rootView->rename($ownerShareKey, $owner . '/files_encryption/share-keys/' . $ownerPath . '.' . $user . '.shareKey'); + $rootView->rename($ownerShareKey, $baseDir . '/share-keys/' . $ownerPath . '.' . $user . '.shareKey'); // try to re-share if file is shared $filesystemView = new \OC_FilesystemView('/'); From 15cb8e4efd5c7f74dc5f0336b0e0b5aba5a9d470 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 17:46:04 +0200 Subject: [PATCH 39/49] only check for external mount points if the external storage app is enabled --- apps/files_encryption/lib/util.php | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 00b3192db8..50e823585d 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1027,11 +1027,12 @@ class Util { } // check if it is a group mount - $mount = \OC_Mount_Config::getSystemMountPoints(); - foreach ($mount as $mountPoint => $data) { - if ($mountPoint == substr($ownerPath, 1, strlen($mountPoint))) { - $userIds = array_merge($userIds, - $this->getUserWithAccessToMountPoint($data['applicable']['users'], $data['applicable']['groups'])); + if (\OCP\App::isEnabled("files_external")) { + $mount = \OC_Mount_Config::getSystemMountPoints(); + foreach ($mount as $mountPoint => $data) { + if ($mountPoint == substr($ownerPath, 1, strlen($mountPoint))) { + $userIds = array_merge($userIds, $this->getUserWithAccessToMountPoint($data['applicable']['users'], $data['applicable']['groups'])); + } } } @@ -1567,10 +1568,12 @@ class Util { * @return boolean */ public function isSystemWideMountPoint($path) { - $mount = \OC_Mount_Config::getSystemMountPoints(); - foreach ($mount as $mountPoint => $data) { - if ($mountPoint == substr($path, 1, strlen($mountPoint))) { - return true; + if (\OCP\App::isEnabled("files_external")) { + $mount = \OC_Mount_Config::getSystemMountPoints(); + foreach ($mount as $mountPoint => $data) { + if ($mountPoint == substr($path, 1, strlen($mountPoint))) { + return true; + } } } return false; From ec6350079f5eab706bb4567654c99c6f800a4f49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 25 Jun 2013 18:03:05 +0200 Subject: [PATCH 40/49] fix getUidAndFilename() test --- apps/files_encryption/tests/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index cb10befc8e..368b7b3dc3 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -219,7 +219,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { \OC_User::setUserId(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1); - $filename = 'tmp-' . time() . '.test'; + $filename = '/tmp-' . time() . '.test'; // Disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; From 9575c2f37c39ae0799c3b8faec4d7902d17e6832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Jul 2013 14:58:33 +0200 Subject: [PATCH 41/49] added helper function to escape glob pattern Conflicts: apps/files_encryption/lib/helper.php --- apps/files_encryption/hooks/hooks.php | 2 +- apps/files_encryption/lib/helper.php | 12 +++++++++++- apps/files_encryption/lib/keymanager.php | 6 +++--- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index c26119b6c2..b2a17f6bca 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -497,7 +497,7 @@ class Hooks { // handle share-keys $localKeyPath = $view->getLocalFile($baseDir . 'share-keys/' . $params['oldpath']); - $escapedPath = preg_replace('/(\*|\?|\[)/', '[$1]', $localKeyPath); + $escapedPath = Helper::escapeGlobPattern($localKeyPath); $matches = glob($escapedPath . '*.shareKey'); foreach ($matches as $src) { $dst = \OC\Files\Filesystem::normalizePath(str_replace($params['oldpath'], $params['newpath'], $src)); diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 31cf48a039..1b9637c1b9 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -218,7 +218,6 @@ class Helper { exit(); } - /** * check requirements for encryption app. * @return bool true if requirements are met @@ -234,3 +233,14 @@ class Helper { return (bool) $result; } } + + /** + * @brief glob uses different pattern than regular expressions, escape glob pattern only + * @param unescaped path + * @return escaped path + */ + public static function escapeGlobPattern($path) { + return preg_replace('/(\*|\?|\[)/', '[$1]', $path); + } +} + diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index da2ee380e8..b2fd650f18 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -488,7 +488,7 @@ class Keymanager { $view->unlink($baseDir . $filePath); } else { $localKeyPath = $view->getLocalFile($baseDir . $filePath); - $escapedPath = preg_replace('/(\*|\?|\[)/', '[$1]', $localKeyPath); + $escapedPath = Helper::escapeGlobPattern($localKeyPath); $matches = glob($escapedPath . '*.shareKey'); foreach ($matches as $ma) { $result = unlink($ma); @@ -549,8 +549,8 @@ class Keymanager { private static function recursiveDelShareKeys($dir, $userIds) { foreach ($userIds as $userId) { $extension = '.' . $userId . '.shareKey'; - $escapedDir = preg_replace('/(\*|\?|\[)/', '[$1]', $dir); - $escapedExtension = preg_replace('/(\*|\?|\[)/', '[$1]', $extension); + $escapedDir = Helper::escapeGlobPattern($dir); + $escapedExtension = Helper::escapeGlobPattern($extension); $matches = glob($escapedDir . '/*' . $escapedExtension); } /** @var $matches array */ From 87063918f223bcab956bd19fe0845ca1e28e9013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Jul 2013 16:05:05 +0200 Subject: [PATCH 42/49] remove wrong closing bracket --- apps/files_encryption/lib/helper.php | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 1b9637c1b9..6eee8fed6a 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -232,7 +232,6 @@ class Helper { return (bool) $result; } -} /** * @brief glob uses different pattern than regular expressions, escape glob pattern only From e159cbf527822edc28522df48b0526419835ca29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 5 Jul 2013 17:39:41 +0200 Subject: [PATCH 43/49] on reshares we now recursively move to the root of all reshares - therefore some code has been refactured and added as a new public function --- apps/files/ajax/upload.php | 29 ++++++++++++++--------------- apps/files_sharing/public.php | 18 ++---------------- lib/public/share.php | 23 +++++++++++++++++++++++ 3 files changed, 39 insertions(+), 31 deletions(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index fd6aa98154..0a61ff72d4 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -27,25 +27,24 @@ if (empty($_POST['dirToken'])) { if (!($linkItem['permissions'] & OCP\PERMISSION_CREATE)) { OCP\JSON::checkLoggedIn(); } else { + // resolve reshares + $rootLinkItem = OCP\Share::resolveReShare($linkItem); + + // Setup FS with owner + OC_Util::setupFS($rootLinkItem['uid_owner']); // The token defines the target directory (security reasons) + $path = \OC\Files\Filesystem::getPath($linkItem['file_source']); $dir = sprintf( "/%s/%s", - $linkItem['file_target'], + $path, isset($_POST['subdir']) ? $_POST['subdir'] : '' ); - // handle reshare - if (!empty($linkItem['parent'])) { - $dir = '/Shared'.$dir; - } - if (!$dir || empty($dir) || $dir === false) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); die(); } - // Setup FS with owner - OC_Util::setupFS($linkItem['uid_owner']); } } @@ -81,17 +80,17 @@ $files = $_FILES['files']; $error = ''; -$maxUploadFilesize = OCP\Util::maxUploadFilesize($dir); -$maxHumanFilesize = OCP\Util::humanFileSize($maxUploadFilesize); +$maxUploadFileSize = $storageStats['uploadMaxFilesize']; +$maxHumanFileSize = OCP\Util::humanFileSize($maxUploadFileSize); $totalSize = 0; foreach ($files['size'] as $size) { $totalSize += $size; } -if ($maxUploadFilesize >= 0 and $totalSize > $maxUploadFilesize) { +if ($maxUploadFileSize >= 0 and $totalSize > $maxUploadFileSize) { OCP\JSON::error(array('data' => array('message' => $l->t('Not enough storage available'), - 'uploadMaxFilesize' => $maxUploadFilesize, - 'maxHumanFilesize' => $maxHumanFilesize))); + 'uploadMaxFilesize' => $maxUploadFileSize, + 'maxHumanFilesize' => $maxHumanFileSize))); exit(); } @@ -113,8 +112,8 @@ if (strpos($dir, '..') === false) { 'id' => $meta['fileid'], 'name' => basename($target), 'originalname' => $files['name'][$i], - 'uploadMaxFilesize' => $maxUploadFilesize, - 'maxHumanFilesize' => $maxHumanFilesize + 'uploadMaxFilesize' => $maxUploadFileSize, + 'maxHumanFilesize' => $maxHumanFileSize ); } } diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index fb18bc2624..7c9158d800 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -27,23 +27,9 @@ if (isset($_GET['t'])) { $type = $linkItem['item_type']; $fileSource = $linkItem['file_source']; $shareOwner = $linkItem['uid_owner']; - $fileOwner = null; $path = null; - if (isset($linkItem['parent'])) { - $parent = $linkItem['parent']; - while (isset($parent)) { - $query = \OC_DB::prepare('SELECT `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `id` = ?', 1); - $item = $query->execute(array($parent))->fetchRow(); - if (isset($item['parent'])) { - $parent = $item['parent']; - } else { - $fileOwner = $item['uid_owner']; - break; - } - } - } else { - $fileOwner = $shareOwner; - } + $rootLinkItem = OCP\Share::resolveReShare($linkItem); + $fileOwner = $rootLinkItem['uid_owner']; if (isset($fileOwner)) { OC_Util::tearDownFS(); OC_Util::setupFS($fileOwner); diff --git a/lib/public/share.php b/lib/public/share.php index de7025d7b1..69e6f35b47 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -291,6 +291,29 @@ class Share { return $result->fetchRow(); } + /** + * @brief resolves reshares down to the last real share + * @param $linkItem + * @return $fileOwner + */ + public static function resolveReShare($linkItem) + { + if (isset($linkItem['parent'])) { + $parent = $linkItem['parent']; + while (isset($parent)) { + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ?', 1); + $item = $query->execute(array($parent))->fetchRow(); + if (isset($item['parent'])) { + $parent = $item['parent']; + } else { + return $item; + } + } + } + return $linkItem; + } + + /** * @brief Get the shared items of item type owned by the current user * @param string Item type From 98da4bf7048519b53defcdeef8fa74e271eb60a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sat, 6 Jul 2013 00:04:01 +0200 Subject: [PATCH 44/49] removing unused getSharedItem() --- lib/public/share.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/public/share.php b/lib/public/share.php index 468026d3d9..7ae0ffe0bf 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -340,17 +340,6 @@ class Share { $parameters, -1, $includeCollections); } - /** - * @param $itemType - * @param $itemSource - * @param $uid_owner - * @return mixed - */ - public static function getSharedItem($itemType, $itemSource, $uid_owner) { - return self::getItems($itemType, $itemSource, null, null, $uid_owner, self::FORMAT_NONE, - null, 1, false); - } - /** * Get all users an item is shared with * @param string Item type From c956a08d2219d623af4ceca644411c8217fe0cbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sat, 6 Jul 2013 00:11:42 +0200 Subject: [PATCH 45/49] fixing check if public share is a folder or not --- apps/files_sharing/public.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 0c3d6fb7b2..9462844a82 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -137,7 +137,7 @@ if (isset($path)) { if (\OCP\App::isEnabled('files_encryption')) { $allowPublicUploadEnabled = false; } - if (isset($file)) { + if ($linkItem['item_type'] !== 'folder') { $allowPublicUploadEnabled = false; } $tmpl->assign('allowPublicUploadEnabled', $allowPublicUploadEnabled); From c8ad3df1fa27afe49f61a1c320d53bedbcb78871 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 6 Jul 2013 02:08:38 +0200 Subject: [PATCH 46/49] [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 3 + apps/files/l10n/et_EE.php | 5 + apps/files/l10n/ro.php | 7 +- apps/files_encryption/l10n/ca.php | 3 + apps/files_encryption/l10n/es.php | 2 + apps/files_encryption/l10n/et_EE.php | 21 + apps/files_encryption/l10n/pt_BR.php | 2 + apps/files_sharing/l10n/es.php | 1 + apps/files_sharing/l10n/et_EE.php | 1 + apps/files_sharing/l10n/pt_BR.php | 1 + apps/files_sharing/l10n/ro.php | 1 + apps/user_webdavauth/l10n/et_EE.php | 1 + core/l10n/af_ZA.php | 1 - core/l10n/ar.php | 1 - core/l10n/bg_BG.php | 1 - core/l10n/bn_BD.php | 1 - core/l10n/ca.php | 1 - core/l10n/cs_CZ.php | 1 - core/l10n/cy_GB.php | 1 - core/l10n/da.php | 1 - core/l10n/de.php | 1 - core/l10n/de_DE.php | 1 - core/l10n/el.php | 1 - core/l10n/en@pirate.php | 3 +- core/l10n/eo.php | 1 - core/l10n/es.php | 1 - core/l10n/es_AR.php | 1 - core/l10n/et_EE.php | 7 +- core/l10n/eu.php | 1 - core/l10n/fa.php | 1 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/he.php | 1 - core/l10n/hr.php | 1 - core/l10n/hu_HU.php | 1 - core/l10n/ia.php | 1 - core/l10n/id.php | 1 - core/l10n/is.php | 1 - core/l10n/it.php | 1 - core/l10n/ja_JP.php | 1 - core/l10n/ka_GE.php | 1 - core/l10n/ko.php | 1 - core/l10n/ku_IQ.php | 1 - core/l10n/lb.php | 1 - core/l10n/lt_LT.php | 1 - core/l10n/lv.php | 1 - core/l10n/mk.php | 1 - core/l10n/ms_MY.php | 1 - core/l10n/my_MM.php | 1 - core/l10n/nb_NO.php | 1 - core/l10n/nl.php | 1 - core/l10n/nn_NO.php | 1 - core/l10n/oc.php | 1 - core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 1 - core/l10n/pt_PT.php | 1 - core/l10n/ro.php | 2 +- core/l10n/ru.php | 1 - core/l10n/si_LK.php | 1 - core/l10n/sk_SK.php | 1 - core/l10n/sl.php | 1 - core/l10n/sq.php | 1 - core/l10n/sr.php | 1 - core/l10n/sv.php | 1 - core/l10n/ta_LK.php | 1 - core/l10n/th_TH.php | 1 - core/l10n/tr.php | 1 - core/l10n/uk.php | 1 - core/l10n/ur_PK.php | 1 - core/l10n/vi.php | 1 - core/l10n/zh_CN.GB2312.php | 1 - core/l10n/zh_CN.php | 1 - core/l10n/zh_TW.php | 1 - l10n/af_ZA/core.po | 60 ++- l10n/af_ZA/lib.po | 6 +- l10n/ar/core.po | 60 ++- l10n/ar/files.po | 28 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 12 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 6 +- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/be/core.po | 64 ++- l10n/bg_BG/core.po | 60 ++- l10n/bg_BG/files.po | 28 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 12 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 6 +- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 60 ++- l10n/bn_BD/files.po | 28 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 12 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 6 +- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 60 ++- l10n/bs/files.po | 28 +- l10n/bs/files_trashbin.po | 4 +- l10n/ca/core.po | 62 ++- l10n/ca/files.po | 37 +- l10n/ca/files_encryption.po | 13 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 12 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 6 +- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 62 ++- l10n/cs_CZ/files.po | 28 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 12 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 6 +- l10n/cs_CZ/settings.po | 4 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 60 ++- l10n/cy_GB/files.po | 28 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 12 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 6 +- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 60 ++- l10n/da/files.po | 28 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 12 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 6 +- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 60 ++- l10n/de/files.po | 28 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 12 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 6 +- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 62 ++- l10n/de_DE/files.po | 28 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 12 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 6 +- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 60 ++- l10n/el/files.po | 28 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 12 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 6 +- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/core.po | 64 ++- l10n/en@pirate/files.po | 28 +- l10n/en@pirate/files_sharing.po | 12 +- l10n/en@pirate/lib.po | 6 +- l10n/eo/core.po | 60 ++- l10n/eo/files.po | 28 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 12 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 6 +- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 62 ++- l10n/es/files.po | 28 +- l10n/es/files_encryption.po | 11 +- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 17 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 6 +- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 60 ++- l10n/es_AR/files.po | 28 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 12 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 6 +- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 72 ++- l10n/et_EE/files.po | 40 +- l10n/et_EE/files_encryption.po | 48 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 17 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 6 +- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/et_EE/user_webdavauth.po | 8 +- l10n/eu/core.po | 60 ++- l10n/eu/files.po | 28 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 12 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 6 +- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 60 ++- l10n/fa/files.po | 28 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 12 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 6 +- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 60 ++- l10n/fi_FI/files.po | 28 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 12 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 6 +- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 62 ++- l10n/fr/files.po | 28 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 12 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 6 +- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 60 ++- l10n/gl/files.po | 28 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 12 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 6 +- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 60 ++- l10n/he/files.po | 28 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 12 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 6 +- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 60 ++- l10n/hi/files.po | 28 +- l10n/hi/lib.po | 4 +- l10n/hr/core.po | 60 ++- l10n/hr/files.po | 28 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 12 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 6 +- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 60 ++- l10n/hu_HU/files.po | 28 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 12 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 6 +- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/core.po | 64 ++- l10n/hy/files.po | 28 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 12 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +- l10n/ia/core.po | 60 ++- l10n/ia/files.po | 28 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 12 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 6 +- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 60 ++- l10n/id/files.po | 28 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 12 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 6 +- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 60 ++- l10n/is/files.po | 28 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 12 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 6 +- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 62 ++- l10n/it/files.po | 28 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 12 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 6 +- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 62 ++- l10n/ja_JP/files.po | 28 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 12 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 6 +- l10n/ja_JP/settings.po | 4 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/core.po | 64 ++- l10n/ka/files.po | 28 +- l10n/ka/files_sharing.po | 12 +- l10n/ka_GE/core.po | 60 ++- l10n/ka_GE/files.po | 28 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 12 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 6 +- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/kn/core.po | 64 ++- l10n/ko/core.po | 60 ++- l10n/ko/files.po | 28 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 12 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 6 +- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 60 ++- l10n/ku_IQ/files.po | 28 +- l10n/ku_IQ/files_sharing.po | 12 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/lib.po | 6 +- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 62 ++- l10n/lb/files.po | 28 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 12 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 6 +- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 60 ++- l10n/lt_LT/files.po | 28 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 12 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 6 +- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 60 ++- l10n/lv/files.po | 28 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 12 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 6 +- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 60 ++- l10n/mk/files.po | 28 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 12 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 6 +- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ml_IN/core.po | 628 +++++++++++++++++++++++++++ l10n/ml_IN/files.po | 348 +++++++++++++++ l10n/ml_IN/files_encryption.po | 172 ++++++++ l10n/ml_IN/files_external.po | 123 ++++++ l10n/ml_IN/files_sharing.po | 56 +++ l10n/ml_IN/files_trashbin.po | 84 ++++ l10n/ml_IN/files_versions.po | 57 +++ l10n/ml_IN/lib.po | 247 +++++++++++ l10n/ml_IN/settings.po | 506 +++++++++++++++++++++ l10n/ml_IN/user_ldap.po | 419 ++++++++++++++++++ l10n/ml_IN/user_webdavauth.po | 33 ++ l10n/ms_MY/core.po | 60 ++- l10n/ms_MY/files.po | 28 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 12 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 6 +- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 60 ++- l10n/my_MM/files.po | 28 +- l10n/my_MM/files_sharing.po | 12 +- l10n/my_MM/lib.po | 6 +- l10n/nb_NO/core.po | 60 ++- l10n/nb_NO/files.po | 28 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 12 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 6 +- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/ne/core.po | 64 ++- l10n/nl/core.po | 62 ++- l10n/nl/files.po | 28 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 12 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 6 +- l10n/nl/settings.po | 4 +- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 60 ++- l10n/nn_NO/files.po | 28 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 12 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 6 +- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 60 ++- l10n/oc/files.po | 28 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 12 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 6 +- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 62 ++- l10n/pl/files.po | 28 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 12 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 6 +- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 62 ++- l10n/pt_BR/files.po | 28 +- l10n/pt_BR/files_encryption.po | 10 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 17 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 6 +- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 60 ++- l10n/pt_PT/files.po | 28 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 12 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 6 +- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 63 ++- l10n/ro/files.po | 43 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 17 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 10 +- l10n/ro/settings.po | 55 +-- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 60 ++- l10n/ru/files.po | 28 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 12 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 6 +- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 60 ++- l10n/si_LK/files.po | 28 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 12 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 6 +- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/core.po | 64 ++- l10n/sk_SK/core.po | 60 ++- l10n/sk_SK/files.po | 28 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 12 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 6 +- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 62 ++- l10n/sl/files.po | 28 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 12 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 6 +- l10n/sl/settings.po | 4 +- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 60 ++- l10n/sq/files.po | 28 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 12 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 6 +- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 60 ++- l10n/sr/files.po | 28 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 12 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 6 +- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 60 ++- l10n/sr@latin/files.po | 28 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 12 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 4 +- l10n/sv/core.po | 62 ++- l10n/sv/files.po | 28 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 12 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 6 +- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/sw_KE/core.po | 64 ++- l10n/ta_LK/core.po | 60 ++- l10n/ta_LK/files.po | 28 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 12 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 6 +- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 60 ++- l10n/te/files.po | 28 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 4 +- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 58 ++- l10n/templates/files.pot | 26 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 10 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 60 ++- l10n/th_TH/files.po | 28 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 12 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 6 +- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 60 ++- l10n/tr/files.po | 28 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 12 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 6 +- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 60 ++- l10n/ug/files.po | 28 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 12 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 4 +- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 60 ++- l10n/uk/files.po | 28 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 12 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 6 +- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 60 ++- l10n/ur_PK/files.po | 28 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 6 +- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 60 ++- l10n/vi/files.po | 28 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 12 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 6 +- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 60 ++- l10n/zh_CN.GB2312/files.po | 28 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 12 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 6 +- l10n/zh_CN.GB2312/settings.po | 4 +- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 62 ++- l10n/zh_CN/files.po | 28 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 12 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 6 +- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 60 ++- l10n/zh_HK/files.po | 28 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 12 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 60 ++- l10n/zh_TW/files.po | 28 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 12 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 6 +- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 4 +- lib/l10n/af_ZA.php | 3 +- lib/l10n/ar.php | 1 + lib/l10n/bg_BG.php | 1 + lib/l10n/bn_BD.php | 1 + lib/l10n/ca.php | 1 + lib/l10n/cs_CZ.php | 1 + lib/l10n/cy_GB.php | 1 + lib/l10n/da.php | 1 + lib/l10n/de.php | 1 + lib/l10n/de_DE.php | 1 + lib/l10n/el.php | 1 + lib/l10n/en@pirate.php | 3 + lib/l10n/eo.php | 1 + lib/l10n/es.php | 1 + lib/l10n/es_AR.php | 1 + lib/l10n/et_EE.php | 1 + lib/l10n/eu.php | 1 + lib/l10n/fa.php | 1 + lib/l10n/fi_FI.php | 1 + lib/l10n/fr.php | 1 + lib/l10n/gl.php | 1 + lib/l10n/he.php | 1 + lib/l10n/hr.php | 1 + lib/l10n/hu_HU.php | 1 + lib/l10n/ia.php | 1 + lib/l10n/id.php | 1 + lib/l10n/is.php | 1 + lib/l10n/it.php | 1 + lib/l10n/ja_JP.php | 1 + lib/l10n/ka_GE.php | 1 + lib/l10n/ko.php | 1 + lib/l10n/ku_IQ.php | 3 +- lib/l10n/lb.php | 1 + lib/l10n/lt_LT.php | 1 + lib/l10n/lv.php | 1 + lib/l10n/mk.php | 1 + lib/l10n/ms_MY.php | 1 + lib/l10n/my_MM.php | 1 + lib/l10n/nb_NO.php | 1 + lib/l10n/nl.php | 1 + lib/l10n/nn_NO.php | 1 + lib/l10n/oc.php | 1 + lib/l10n/pl.php | 1 + lib/l10n/pt_BR.php | 1 + lib/l10n/pt_PT.php | 1 + lib/l10n/ro.php | 3 + lib/l10n/ru.php | 1 + lib/l10n/si_LK.php | 1 + lib/l10n/sk_SK.php | 1 + lib/l10n/sl.php | 1 + lib/l10n/sq.php | 1 + lib/l10n/sr.php | 1 + lib/l10n/sv.php | 1 + lib/l10n/ta_LK.php | 1 + lib/l10n/th_TH.php | 1 + lib/l10n/tr.php | 1 + lib/l10n/uk.php | 1 + lib/l10n/ur_PK.php | 3 +- lib/l10n/vi.php | 1 + lib/l10n/zh_CN.GB2312.php | 1 + lib/l10n/zh_CN.php | 1 + lib/l10n/zh_TW.php | 1 + settings/l10n/ro.php | 25 +- 693 files changed, 7173 insertions(+), 4714 deletions(-) create mode 100644 l10n/ml_IN/core.po create mode 100644 l10n/ml_IN/files.po create mode 100644 l10n/ml_IN/files_encryption.po create mode 100644 l10n/ml_IN/files_external.po create mode 100644 l10n/ml_IN/files_sharing.po create mode 100644 l10n/ml_IN/files_trashbin.po create mode 100644 l10n/ml_IN/files_versions.po create mode 100644 l10n/ml_IN/lib.po create mode 100644 l10n/ml_IN/settings.po create mode 100644 l10n/ml_IN/user_ldap.po create mode 100644 l10n/ml_IN/user_webdavauth.po create mode 100644 lib/l10n/en@pirate.php diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index f72bc14f51..8d5f69f331 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -49,6 +49,7 @@ "{count} folders" => "{count} carpetes", "1 file" => "1 fitxer", "{count} files" => "{count} fitxers", +"%s could not be renamed" => "%s no es pot canviar el nom", "Upload" => "Puja", "File handling" => "Gestió de fitxers", "Maximum upload size" => "Mida màxima de pujada", @@ -72,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor", "Files are being scanned, please wait." => "S'estan escanejant els fitxers, espereu", "Current scanning" => "Actualment escanejant", +"directory" => "directori", +"directories" => "directoris", "file" => "fitxer", "files" => "fitxers", "Upgrading filesystem cache..." => "Actualitzant la memòria de cau del sistema de fitxers..." diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 6d94a8105e..c58b066e28 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,6 +1,8 @@ "Ei saa liigutada faili %s - samanimeline fail on juba olemas", "Could not move %s" => "%s liigutamine ebaõnnestus", +"Unable to set upload directory." => "Üleslaadimiste kausta määramine ebaõnnestus.", +"Invalid Token" => "Vigane kontrollkood", "No file was uploaded. Unknown error" => "Ühtegi faili ei laetud üles. Tundmatu viga", "There is no error, the file uploaded with success" => "Ühtegi tõrget polnud, fail on üles laetud", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:", @@ -47,6 +49,7 @@ "{count} folders" => "{count} kausta", "1 file" => "1 fail", "{count} files" => "{count} faili", +"%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload" => "Lae üles", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", @@ -70,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", "Files are being scanned, please wait." => "Faile skannitakse, palun oota.", "Current scanning" => "Praegune skannimine", +"directory" => "kaust", +"directories" => "kaustad", "file" => "fail", "files" => "faili", "Upgrading filesystem cache..." => "Failisüsteemi puhvri uuendamine..." diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index b12f9d1059..b0cca7d7a8 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,6 +1,8 @@ "Nu se poate de mutat %s - Fișier cu acest nume deja există", +"Could not move %s - File with this name already exists" => "%s nu se poate muta - Fișierul cu acest nume există deja ", "Could not move %s" => "Nu s-a putut muta %s", +"Unable to set upload directory." => "Imposibil de a seta directorul pentru incărcare.", +"Invalid Token" => "Jeton Invalid", "No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută", "There is no error, the file uploaded with success" => "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ", @@ -47,6 +49,7 @@ "{count} folders" => "{count} foldare", "1 file" => "1 fisier", "{count} files" => "{count} fisiere", +"%s could not be renamed" => "%s nu a putut fi redenumit", "Upload" => "Încărcare", "File handling" => "Manipulare fișiere", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", @@ -70,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server.", "Files are being scanned, please wait." => "Fișierele sunt scanate, te rog așteptă.", "Current scanning" => "În curs de scanare", +"directory" => "catalog", +"directories" => "cataloage", "file" => "fișier", "files" => "fișiere", "Upgrading filesystem cache..." => "Modernizare fisiere de sistem cache.." diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 3c0b39bab6..d9d3d7b4fa 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -7,6 +7,9 @@ "Could not change the password. Maybe the old password was not correct." => "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta.", "Private key password successfully updated." => "La contrasenya de la clau privada s'ha actualitzat.", "Could not update the private key password. Maybe the old password was not correct." => "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.", +"Missing requirements." => "Manca de requisits.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada.", "Saving..." => "Desant...", "Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", "You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 42a79e4fd2..fdea5f26a9 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -8,6 +8,8 @@ "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", +"Missing requirements." => "Requisitos incompletos.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", "You can unlock your private key in your " => "Puede desbloquear su clave privada en su", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index 94c774636b..c1c8164b81 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -5,11 +5,32 @@ "Could not disable recovery key. Please check your recovery key password!" => "Ei suuda keelata taastevõtit. Palun kontrolli oma taastevõtme parooli!", "Password successfully changed." => "Parool edukalt vahetatud.", "Could not change the password. Maybe the old password was not correct." => "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud.", +"Private key password successfully updated." => "Privaatse võtme parool edukalt uuendatud.", +"Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", +"Missing requirements." => "Nõutavad on puudu.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud.", "Saving..." => "Salvestamine...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt.", +"You can unlock your private key in your " => "Saad avada oma privaatse võtme oma", +"personal settings" => "isiklikes seadetes", "Encryption" => "Krüpteerimine", +"Enable recovery key (allow to recover users files in case of password loss):" => "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):", +"Recovery key password" => "Taastevõtme parool", "Enabled" => "Sisse lülitatud", "Disabled" => "Väljalülitatud", +"Change recovery key password:" => "Muuda taastevõtme parooli:", +"Old Recovery key password" => "Vana taastevõtme parool", +"New Recovery key password" => "Uus taastevõtme parool", "Change Password" => "Muuda parooli", +"Your private key password no longer match your log-in password:" => "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:", +"Set your old private key password to your current log-in password." => "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele.", +"Old log-in password" => "Vana sisselogimise parool", +"Current log-in password" => "Praegune sisselogimise parool", +"Update Private Key Password" => "Uuenda privaatse võtme parooli", +"Enable password recovery:" => "Luba parooli taaste:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul", "File recovery settings updated" => "Faili taaste seaded uuendatud", "Could not update file recovery" => "Ei suuda uuendada taastefaili" ); diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index cb6a881ae0..1563243c99 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -8,6 +8,8 @@ "Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", +"Missing requirements." => "Requisitos em falta.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", "You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 9f7f10f806..1b65cf0c19 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -1,4 +1,5 @@ "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" => "Contraseña", "Submit" => "Enviar", "%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index 138628849a..78fe436398 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -1,4 +1,5 @@ "Parool on vale. Proovi uuesti.", "Password" => "Parool", "Submit" => "Saada", "%s shared the folder %s with you" => "%s jagas sinuga kausta %s", diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index cf1eda9439..c82989857a 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -1,4 +1,5 @@ "Senha incorreta. Tente novamente.", "Password" => "Senha", "Submit" => "Submeter", "%s shared the folder %s with you" => "%s compartilhou a pasta %s com você", diff --git a/apps/files_sharing/l10n/ro.php b/apps/files_sharing/l10n/ro.php index 1f38026daa..3197068cdd 100644 --- a/apps/files_sharing/l10n/ro.php +++ b/apps/files_sharing/l10n/ro.php @@ -1,4 +1,5 @@ "Parola este incorectă. Încercaţi din nou.", "Password" => "Parolă", "Submit" => "Trimite", "%s shared the folder %s with you" => "%s a partajat directorul %s cu tine", diff --git a/apps/user_webdavauth/l10n/et_EE.php b/apps/user_webdavauth/l10n/et_EE.php index 470cb2b0f1..f95b521413 100644 --- a/apps/user_webdavauth/l10n/et_EE.php +++ b/apps/user_webdavauth/l10n/et_EE.php @@ -1,4 +1,5 @@ "WebDAV autentimine", +"URL: " => "URL: ", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." ); diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index 4878c75edd..dc78e44c8d 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -15,7 +15,6 @@ "Admin" => "Admin", "Help" => "Hulp", "Cloud not found" => "Wolk nie gevind", -"web services under your control" => "webdienste onder jou beheer", "Create an admin account" => "Skep `n admin-rekening", "Advanced" => "Gevorderd", "Configure the database" => "Stel databasis op", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 7ac7a564c3..b18ee712cf 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -98,7 +98,6 @@ "Help" => "المساعدة", "Access forbidden" => "التوصّل محظور", "Cloud not found" => "لم يتم إيجاد", -"web services under your control" => "خدمات الشبكة تحت سيطرتك", "Edit categories" => "عدل الفئات", "Add" => "اضف", "Security Warning" => "تحذير أمان", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 490bea9b17..608f26bc86 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -50,7 +50,6 @@ "Help" => "Помощ", "Access forbidden" => "Достъпът е забранен", "Cloud not found" => "облакът не намерен", -"web services under your control" => "уеб услуги под Ваш контрол", "Edit categories" => "Редактиране на категориите", "Add" => "Добавяне", "Create an admin account" => "Създаване на админ профил", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index c775d2fb6a..5c171af567 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -95,7 +95,6 @@ "Help" => "সহায়িকা", "Access forbidden" => "অধিগমনের অনুমতি নেই", "Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", -"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", "Edit categories" => "ক্যাটেগরি সম্পাদনা", "Add" => "যোগ কর", "Security Warning" => "নিরাপত্তাজনিত সতর্কতা", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 9b3b45fdf9..80f0e558a6 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -106,7 +106,6 @@ "Access forbidden" => "Accés prohibit", "Cloud not found" => "No s'ha trobat el núvol", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!", -"web services under your control" => "controleu els vostres serveis web", "Edit categories" => "Edita les categories", "Add" => "Afegeix", "Security Warning" => "Avís de seguretat", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 113d0f41ba..b0e70938d4 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -106,7 +106,6 @@ "Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky", -"web services under your control" => "služby webu pod Vaší kontrolou", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Security Warning" => "Bezpečnostní upozornění", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 6158a356dc..aeb2995e6b 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -100,7 +100,6 @@ "Help" => "Cymorth", "Access forbidden" => "Mynediad wedi'i wahardd", "Cloud not found" => "Methwyd canfod cwmwl", -"web services under your control" => "gwasanaethau gwe a reolir gennych", "Edit categories" => "Golygu categorïau", "Add" => "Ychwanegu", "Security Warning" => "Rhybudd Diogelwch", diff --git a/core/l10n/da.php b/core/l10n/da.php index b3da17ba79..2e84c3ff51 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -101,7 +101,6 @@ "Help" => "Hjælp", "Access forbidden" => "Adgang forbudt", "Cloud not found" => "Sky ikke fundet", -"web services under your control" => "Webtjenester under din kontrol", "Edit categories" => "Rediger kategorier", "Add" => "Tilføj", "Security Warning" => "Sikkerhedsadvarsel", diff --git a/core/l10n/de.php b/core/l10n/de.php index 897b379a28..c33045eb7b 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -105,7 +105,6 @@ "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud nicht gefunden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nwollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.\nSchau es dir an: %s\n\nGruß!", -"web services under your control" => "Web-Services unter Deiner Kontrolle", "Edit categories" => "Kategorien bearbeiten", "Add" => "Hinzufügen", "Security Warning" => "Sicherheitswarnung", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index eca14f7d9a..9d5a7298e1 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -106,7 +106,6 @@ "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud wurde nicht gefunden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!", -"web services under your control" => "Web-Services unter Ihrer Kontrolle", "Edit categories" => "Kategorien ändern", "Add" => "Hinzufügen", "Security Warning" => "Sicherheitshinweis", diff --git a/core/l10n/el.php b/core/l10n/el.php index 022d9d9003..2dcfa1bb69 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -104,7 +104,6 @@ "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!", -"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", "Edit categories" => "Επεξεργασία κατηγοριών", "Add" => "Προσθήκη", "Security Warning" => "Προειδοποίηση Ασφαλείας", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index 0c590d0b75..482632f3fd 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,4 +1,3 @@ "Passcode", -"web services under your control" => "web services under your control" +"Password" => "Passcode" ); diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 2adf09d3a0..00f925e527 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -102,7 +102,6 @@ "Access forbidden" => "Aliro estas malpermesata", "Cloud not found" => "La nubo ne estas trovita", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!", -"web services under your control" => "TTT-servoj regataj de vi", "Edit categories" => "Redakti kategoriojn", "Add" => "Aldoni", "Security Warning" => "Sekureca averto", diff --git a/core/l10n/es.php b/core/l10n/es.php index 3845f68d24..ae98a019db 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -106,7 +106,6 @@ "Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encuentra la nube", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Oye,⏎ sólo te hago saber que %s compartido %s contigo.⏎ Míralo: %s ⏎Disfrutalo!", -"web services under your control" => "Servicios web bajo su control", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 8bef515116..1fac1c88da 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -105,7 +105,6 @@ "Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encontró ownCloud", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!", -"web services under your control" => "servicios web que controlás", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 4c0a41c508..ec850491b7 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,4 +1,5 @@ "%s jagas sinuga »%s«", "Category type not provided." => "Kategooria tüüp puudub.", "No category to add?" => "Pole kategooriat, mida lisada?", "This category already exists: %s" => "See kategooria on juba olemas: %s", @@ -61,6 +62,7 @@ "Share with link" => "Jaga lingiga", "Password protect" => "Parooliga kaitstud", "Password" => "Parool", +"Allow Public Upload" => "Luba avalik üleslaadimine", "Email link to person" => "Saada link isikule e-postiga", "Send" => "Saada", "Set expiration date" => "Määra aegumise kuupäev", @@ -89,6 +91,8 @@ "Request failed!
Did you make sure your email/username was right?" => "Päring ebaõnnestus!
Oled sa veendunud, et e-post/kasutajanimi on õiged?", "You will receive a link to reset your password via Email." => "Sinu parooli taastamise link saadetakse sulle e-postile.", "Username" => "Kasutajanimi", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Sinu failid on krüpteeritud. Kui sa pole taastamise võtit veel määranud, siis pole präast parooli taastamist mingit võimalust sinu andmeid tagasi saada. Kui sa pole kindel, mida teha, siis palun väta enne jätkamist ühendust oma administaatoriga. Oled sa kindel, et sa soovid jätkata?", +"Yes, I really want to reset my password now" => "Jah, ma tõesti soovin oma parooli praegu nullida", "Request reset" => "Päringu taastamine", "Your password was reset" => "Sinu parool on taastatud", "To login page" => "Sisselogimise lehele", @@ -101,7 +105,7 @@ "Help" => "Abiinfo", "Access forbidden" => "Ligipääs on keelatud", "Cloud not found" => "Pilve ei leitud", -"web services under your control" => "veebitenused sinu kontrolli all", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sinuga %s.\nVaata seda siin: %s\n\nTervitused!", "Edit categories" => "Muuda kategooriaid", "Add" => "Lisa", "Security Warning" => "Turvahoiatus", @@ -131,6 +135,7 @@ "remember" => "pea meeles", "Log in" => "Logi sisse", "Alternative Logins" => "Alternatiivsed sisselogimisviisid", +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" => "Hei,

lihtsalt annan sulle teada, et %s jagas sinuga »%s«.
Vaata seda!

Tervitades!", "prev" => "eelm", "next" => "järgm", "Updating ownCloud to version %s, this may take a while." => "ownCloudi uuendamine versioonile %s. See võib veidi aega võtta." diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 117c010575..4242d975f3 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -98,7 +98,6 @@ "Help" => "Laguntza", "Access forbidden" => "Sarrera debekatuta", "Cloud not found" => "Ez da hodeia aurkitu", -"web services under your control" => "web zerbitzuak zure kontrolpean", "Edit categories" => "Editatu kategoriak", "Add" => "Gehitu", "Security Warning" => "Segurtasun abisua", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 338b3ad4b2..1a7ebf507d 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -98,7 +98,6 @@ "Help" => "راه‌نما", "Access forbidden" => "اجازه دسترسی به مناطق ممنوعه را ندارید", "Cloud not found" => "پیدا نشد", -"web services under your control" => "سرویس های تحت وب در کنترل شما", "Edit categories" => "ویرایش گروه", "Add" => "افزودن", "Security Warning" => "اخطار امنیتی", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 3e471ad194..23b697a25c 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -98,7 +98,6 @@ "Access forbidden" => "Pääsy estetty", "Cloud not found" => "Pilveä ei löydy", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!", -"web services under your control" => "verkkopalvelut hallinnassasi", "Edit categories" => "Muokkaa luokkia", "Add" => "Lisää", "Security Warning" => "Turvallisuusvaroitus", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 079cde5c30..bc8a0d2815 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -106,7 +106,6 @@ "Access forbidden" => "Accès interdit", "Cloud not found" => "Introuvable", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!", -"web services under your control" => "services web sous votre contrôle", "Edit categories" => "Editer les catégories", "Add" => "Ajouter", "Security Warning" => "Avertissement de sécurité", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index db53a3e8a4..8d2404672e 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -105,7 +105,6 @@ "Access forbidden" => "Acceso denegado", "Cloud not found" => "Nube non atopada", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!", -"web services under your control" => "servizos web baixo o seu control", "Edit categories" => "Editar as categorías", "Add" => "Engadir", "Security Warning" => "Aviso de seguranza", diff --git a/core/l10n/he.php b/core/l10n/he.php index 1095507673..ab002ab64e 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -101,7 +101,6 @@ "Help" => "עזרה", "Access forbidden" => "הגישה נחסמה", "Cloud not found" => "ענן לא נמצא", -"web services under your control" => "שירותי רשת תחת השליטה שלך", "Edit categories" => "ערוך קטגוריות", "Add" => "הוספה", "Security Warning" => "אזהרת אבטחה", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 80a34094b2..3eb556e9f6 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -73,7 +73,6 @@ "Help" => "Pomoć", "Access forbidden" => "Pristup zabranjen", "Cloud not found" => "Cloud nije pronađen", -"web services under your control" => "web usluge pod vašom kontrolom", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Create an admin account" => "Stvori administratorski račun", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index a0b6979c4b..25abd07890 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -104,7 +104,6 @@ "Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!", -"web services under your control" => "webszolgáltatások saját kézben", "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", "Security Warning" => "Biztonsági figyelmeztetés", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 9df7eda1da..8c9b6b88ef 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -38,7 +38,6 @@ "Help" => "Adjuta", "Access forbidden" => "Accesso prohibite", "Cloud not found" => "Nube non trovate", -"web services under your control" => "servicios web sub tu controlo", "Edit categories" => "Modificar categorias", "Add" => "Adder", "Create an admin account" => "Crear un conto de administration", diff --git a/core/l10n/id.php b/core/l10n/id.php index 5fe8b54222..2ee9c37ec2 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -98,7 +98,6 @@ "Help" => "Bantuan", "Access forbidden" => "Akses ditolak", "Cloud not found" => "Cloud tidak ditemukan", -"web services under your control" => "layanan web dalam kontrol Anda", "Edit categories" => "Edit kategori", "Add" => "Tambah", "Security Warning" => "Peringatan Keamanan", diff --git a/core/l10n/is.php b/core/l10n/is.php index b8573b3624..3d3ce41b27 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -96,7 +96,6 @@ "Help" => "Hjálp", "Access forbidden" => "Aðgangur bannaður", "Cloud not found" => "Ský finnst ekki", -"web services under your control" => "vefþjónusta undir þinni stjórn", "Edit categories" => "Breyta flokkum", "Add" => "Bæta við", "Security Warning" => "Öryggis aðvörun", diff --git a/core/l10n/it.php b/core/l10n/it.php index b053a2a21b..c1c27cdf54 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -106,7 +106,6 @@ "Access forbidden" => "Accesso negato", "Cloud not found" => "Nuvola non trovata", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nSaluti!", -"web services under your control" => "servizi web nelle tue mani", "Edit categories" => "Modifica categorie", "Add" => "Aggiungi", "Security Warning" => "Avviso di sicurezza", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index ccd5e46425..5f9ca65b62 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -106,7 +106,6 @@ "Access forbidden" => "アクセスが禁止されています", "Cloud not found" => "見つかりません", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。", -"web services under your control" => "管理下のウェブサービス", "Edit categories" => "カテゴリを編集", "Add" => "追加", "Security Warning" => "セキュリティ警告", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 6674106f1d..877d66a0db 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -98,7 +98,6 @@ "Help" => "დახმარება", "Access forbidden" => "წვდომა აკრძალულია", "Cloud not found" => "ღრუბელი არ არსებობს", -"web services under your control" => "web services under your control", "Edit categories" => "კატეგორიების რედაქტირება", "Add" => "დამატება", "Security Warning" => "უსაფრთხოების გაფრთხილება", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index d95daaa3a7..2ce4f0fd37 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -98,7 +98,6 @@ "Help" => "도움말", "Access forbidden" => "접근 금지됨", "Cloud not found" => "클라우드를 찾을 수 없습니다", -"web services under your control" => "내가 관리하는 웹 서비스", "Edit categories" => "분류 수정", "Add" => "추가", "Security Warning" => "보안 경고", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index ab46b13a50..1902e45061 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -10,7 +10,6 @@ "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", "Help" => "یارمەتی", "Cloud not found" => "هیچ نه‌دۆزرایه‌وه‌", -"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه", "Add" => "زیادکردن", "Advanced" => "هه‌ڵبژاردنی پیشكه‌وتوو", "Data folder" => "زانیاری فۆڵده‌ر", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 08cf4317d2..96a3222093 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -106,7 +106,6 @@ "Access forbidden" => "Zougrëff net erlaabt", "Cloud not found" => "Cloud net fonnt", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.\nKucken: %s\n\nE schéine Bonjour!", -"web services under your control" => "Web-Servicer ënnert denger Kontroll", "Edit categories" => "Kategorien editéieren", "Add" => "Dobäisetzen", "Security Warning" => "Sécherheets-Warnung", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 673ee83dca..4faf7388b2 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -101,7 +101,6 @@ "Help" => "Pagalba", "Access forbidden" => "Priėjimas draudžiamas", "Cloud not found" => "Negalima rasti", -"web services under your control" => "jūsų valdomos web paslaugos", "Edit categories" => "Redaguoti kategorijas", "Add" => "Pridėti", "Security Warning" => "Saugumo pranešimas", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index b8bfe74c37..9552891d7d 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -98,7 +98,6 @@ "Help" => "Palīdzība", "Access forbidden" => "Pieeja ir liegta", "Cloud not found" => "Mākonis netika atrasts", -"web services under your control" => "tīmekļa servisi tavā varā", "Edit categories" => "Rediģēt kategoriju", "Add" => "Pievienot", "Security Warning" => "Brīdinājums par drošību", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index de89403ee3..c2b7907aa3 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -94,7 +94,6 @@ "Help" => "Помош", "Access forbidden" => "Забранет пристап", "Cloud not found" => "Облакот не е најден", -"web services under your control" => "веб сервиси под Ваша контрола", "Edit categories" => "Уреди категории", "Add" => "Додади", "Security Warning" => "Безбедносно предупредување", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 7a18acea7c..4227a31758 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -44,7 +44,6 @@ "Help" => "Bantuan", "Access forbidden" => "Larangan akses", "Cloud not found" => "Awan tidak dijumpai", -"web services under your control" => "Perkhidmatan web di bawah kawalan anda", "Edit categories" => "Ubah kategori", "Add" => "Tambah", "Security Warning" => "Amaran keselamatan", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 614c353929..bfdff35184 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -46,7 +46,6 @@ "Admin" => "အက်ဒမင်", "Help" => "အကူအညီ", "Cloud not found" => "မတွေ့ရှိမိပါ", -"web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services", "Add" => "ပေါင်းထည့်", "Security Warning" => "လုံခြုံရေးသတိပေးချက်", "Create an admin account" => "အက်ဒမင်အကောင့်တစ်ခုဖန်တီးမည်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index d6d9675d32..dfe0cbaeb8 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -78,7 +78,6 @@ "Help" => "Hjelp", "Access forbidden" => "Tilgang nektet", "Cloud not found" => "Sky ikke funnet", -"web services under your control" => "web tjenester du kontrollerer", "Edit categories" => "Rediger kategorier", "Add" => "Legg til", "Security Warning" => "Sikkerhetsadvarsel", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 7afbdde353..9352f595e7 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -106,7 +106,6 @@ "Access forbidden" => "Toegang verboden", "Cloud not found" => "Cloud niet gevonden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!", -"web services under your control" => "Webdiensten in eigen beheer", "Edit categories" => "Wijzig categorieën", "Add" => "Toevoegen", "Security Warning" => "Beveiligingswaarschuwing", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 67dbe32ff6..2a4902962b 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -100,7 +100,6 @@ "Help" => "Hjelp", "Access forbidden" => "Tilgang forbudt", "Cloud not found" => "Fann ikkje skyen", -"web services under your control" => "Vev tjenester under din kontroll", "Edit categories" => "Endra kategoriar", "Add" => "Legg til", "Security Warning" => "Tryggleiksåtvaring", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 4440444885..ad400aa650 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -74,7 +74,6 @@ "Help" => "Ajuda", "Access forbidden" => "Acces enebit", "Cloud not found" => "Nívol pas trobada", -"web services under your control" => "Services web jos ton contraròtle", "Edit categories" => "Edita categorias", "Add" => "Ajusta", "Security Warning" => "Avertiment de securitat", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 98a2c6b0af..0d7c9eb21c 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -104,7 +104,6 @@ "Help" => "Pomoc", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", -"web services under your control" => "Kontrolowane serwisy", "Edit categories" => "Edytuj kategorie", "Add" => "Dodaj", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 69a87133ff..b36511da60 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -106,7 +106,6 @@ "Access forbidden" => "Acesso proibido", "Cloud not found" => "Cloud não encontrado", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!", -"web services under your control" => "serviços web sob seu controle", "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 77c27b641d..b0afff1ad2 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -101,7 +101,6 @@ "Help" => "Ajuda", "Access forbidden" => "Acesso interdito", "Cloud not found" => "Cloud nao encontrada", -"web services under your control" => "serviços web sob o seu controlo", "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 327fb72f43..6f23cea1c2 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -62,6 +62,7 @@ "Share with link" => "Partajare cu legătură", "Password protect" => "Protejare cu parolă", "Password" => "Parolă", +"Allow Public Upload" => "Permiteţi încărcarea publică.", "Email link to person" => "Expediază legătura prin poșta electronică", "Send" => "Expediază", "Set expiration date" => "Specifică data expirării", @@ -105,7 +106,6 @@ "Access forbidden" => "Acces interzis", "Cloud not found" => "Nu s-a găsit", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!", -"web services under your control" => "servicii web controlate de tine", "Edit categories" => "Editează categorii", "Add" => "Adaugă", "Security Warning" => "Avertisment de securitate", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index f3acab5be3..c770794911 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -105,7 +105,6 @@ "Access forbidden" => "Доступ запрещён", "Cloud not found" => "Облако не найдено", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!", -"web services under your control" => "веб-сервисы под вашим управлением", "Edit categories" => "Редактировать категрии", "Add" => "Добавить", "Security Warning" => "Предупреждение безопасности", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index b27f1c6c98..21038a93e8 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -66,7 +66,6 @@ "Help" => "උදව්", "Access forbidden" => "ඇතුල් වීම තහනම්", "Cloud not found" => "සොයා ගත නොහැක", -"web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්", "Edit categories" => "ප්‍රභේදයන් සංස්කරණය", "Add" => "එකතු කරන්න", "Security Warning" => "ආරක්ෂක නිවේදනයක්", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index ead3842e45..e9876c52ea 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -104,7 +104,6 @@ "Access forbidden" => "Prístup odmietnutý", "Cloud not found" => "Nenájdené", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka", -"web services under your control" => "webové služby pod Vašou kontrolou", "Edit categories" => "Upraviť kategórie", "Add" => "Pridať", "Security Warning" => "Bezpečnostné varovanie", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index bbe7554245..548a5a3f51 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -106,7 +106,6 @@ "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!", -"web services under your control" => "spletne storitve pod vašim nadzorom", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Security Warning" => "Varnostno opozorilo", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index f5d7d93376..4e6c458f4d 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -100,7 +100,6 @@ "Help" => "Ndihmë", "Access forbidden" => "Ndalohet hyrja", "Cloud not found" => "Cloud-i nuk u gjet", -"web services under your control" => "shërbime web nën kontrollin tënd", "Edit categories" => "Ndrysho kategoritë", "Add" => "Shto", "Security Warning" => "Paralajmërim sigurie", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index a85e1bfb7e..d68012c505 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -93,7 +93,6 @@ "Help" => "Помоћ", "Access forbidden" => "Забрањен приступ", "Cloud not found" => "Облак није нађен", -"web services under your control" => "веб сервиси под контролом", "Edit categories" => "Измени категорије", "Add" => "Додај", "Security Warning" => "Сигурносно упозорење", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index bb79e67d95..d6d4b0ff32 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -106,7 +106,6 @@ "Access forbidden" => "Åtkomst förbjuden", "Cloud not found" => "Hittade inget moln", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!", -"web services under your control" => "webbtjänster under din kontroll", "Edit categories" => "Editera kategorier", "Add" => "Lägg till", "Security Warning" => "Säkerhetsvarning", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 0770805ddf..e593018aaa 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -90,7 +90,6 @@ "Help" => "உதவி", "Access forbidden" => "அணுக தடை", "Cloud not found" => "Cloud காணப்படவில்லை", -"web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது", "Edit categories" => "வகைகளை தொகுக்க", "Add" => "சேர்க்க", "Security Warning" => "பாதுகாப்பு எச்சரிக்கை", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 83642ed89c..392da561bf 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -97,7 +97,6 @@ "Help" => "ช่วยเหลือ", "Access forbidden" => "การเข้าถึงถูกหวงห้าม", "Cloud not found" => "ไม่พบ Cloud", -"web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้", "Edit categories" => "แก้ไขหมวดหมู่", "Add" => "เพิ่ม", "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index f6112040c5..0a56af9418 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -101,7 +101,6 @@ "Help" => "Yardım", "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", -"web services under your control" => "Bilgileriniz güvenli ve şifreli", "Edit categories" => "Kategorileri düzenle", "Add" => "Ekle", "Security Warning" => "Güvenlik Uyarisi", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 11ebda3af8..8e67a47095 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -98,7 +98,6 @@ "Help" => "Допомога", "Access forbidden" => "Доступ заборонено", "Cloud not found" => "Cloud не знайдено", -"web services under your control" => "підконтрольні Вам веб-сервіси", "Edit categories" => "Редагувати категорії", "Add" => "Додати", "Security Warning" => "Попередження про небезпеку", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index 0e0489bf33..b27033b80e 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -55,7 +55,6 @@ "Help" => "مدد", "Access forbidden" => "پہنچ کی اجازت نہیں", "Cloud not found" => "نہیں مل سکا", -"web services under your control" => "آپ کے اختیار میں ویب سروسیز", "Edit categories" => "زمرہ جات کی تدوین کریں", "Add" => "شامل کریں", "Create an admin account" => "ایک ایڈمن اکاؤنٹ بنائیں", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index ebe6c7006f..37ed47de76 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -100,7 +100,6 @@ "Help" => "Giúp đỡ", "Access forbidden" => "Truy cập bị cấm", "Cloud not found" => "Không tìm thấy Clound", -"web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn", "Edit categories" => "Sửa chuyên mục", "Add" => "Thêm", "Security Warning" => "Cảnh bảo bảo mật", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index b4cc129964..237f0bb14b 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -97,7 +97,6 @@ "Help" => "帮助", "Access forbidden" => "禁止访问", "Cloud not found" => "云 没有被找到", -"web services under your control" => "您控制的网络服务", "Edit categories" => "编辑分类", "Add" => "添加", "Security Warning" => "安全警告", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 80815b508c..0c73fe31b3 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -106,7 +106,6 @@ "Access forbidden" => "访问禁止", "Cloud not found" => "未找到云", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "您好,\n\n%s 向您分享了 %s。\n查看: %s", -"web services under your control" => "您控制的web服务", "Edit categories" => "编辑分类", "Add" => "增加", "Security Warning" => "安全警告", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 306ae7acb8..4afa6ea116 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -102,7 +102,6 @@ "Help" => "說明", "Access forbidden" => "存取被拒", "Cloud not found" => "未發現雲端", -"web services under your control" => "由您控制的網路服務", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 26e10e5db7..7921264053 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Wagwoord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "Wolk nie gevind" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "webdienste onder jou beheer" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,7 +607,7 @@ msgstr "Teken aan" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "webdienste onder jou beheer" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 5f270eee1c..d9b2052c10 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "نوع العنصر غير محدد." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "خطأ" @@ -246,7 +246,7 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -282,87 +282,87 @@ msgstr "حماية كلمة السر" msgid "Password" msgstr "كلمة المرور" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "ارسل الرابط بالبريد الى صديق" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "أرسل" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "تاريخ إنتهاء الصلاحية" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "مشاركة عبر البريد الإلكتروني:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "إنشاء" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "تحديث" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "حذف" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "مشاركة" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" @@ -465,7 +465,7 @@ msgstr "التوصّل محظور" msgid "Cloud not found" msgstr "لم يتم إيجاد" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "خدمات الشبكة تحت سيطرتك" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "عدل الفئات" @@ -611,7 +607,7 @@ msgstr "أدخل" msgid "Alternative Logins" msgstr "اسماء دخول بديلة" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا ال msgid "Could not move %s" msgstr "فشل في نقل %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "مسار غير صحيح." diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index acd67b816b..0fd555a230 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 3bfa13436f..0b985ca8e6 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s شارك المجلد %s معك" msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "تحميل" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "رفع" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 7c234b5e27..eda6c2c0f4 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 8af48217de..b060f648c2 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "المدير" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "خدمات الشبكة تحت سيطرتك" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index ccb9e98dc7..7c9d24129c 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index d0266647f5..f4a507e60a 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index cf69cc48b4..c829cb46e4 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "Завяршыць ўстаноўку." -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Споделяне" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Парола" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "създаване" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Достъпът е забранен" msgid "Cloud not found" msgstr "облакът не намерен" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "уеб услуги под Ваш контрол" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Редактиране на категориите" @@ -611,7 +607,7 @@ msgstr "Вход" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Възникна проблем при запис в диска" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Невалидна директория." diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 9e141cb00e..f35a3a07ce 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index c31e6732a5..36f87f5409 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s сподели папката %s с Вас" msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Качване" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Няма наличен преглед за" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 1c711b410d..81fdbdd8b4 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index d784089510..8b442af533 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Админ" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "уеб услуги под Ваш контрол" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 1bfeca86d5..c91fff77fd 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 3927f633a9..7efdc6ea20 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 5bf76871da..ff9ebb729a 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "অবজেক্টের ধরণটি সুনির্দিষ #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "সমস্যা" @@ -246,7 +246,7 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -282,87 +282,87 @@ msgstr "কূটশব্দ সুরক্ষিত" msgid "Password" msgstr "কূটশব্দ" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "পাঠাও" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" @@ -465,7 +465,7 @@ msgstr "অধিগমনের অনুমতি নেই" msgid "Cloud not found" msgstr "ক্লাউড খুঁজে পাওয়া গেল না" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ক্যাটেগরি সম্পাদনা" @@ -611,7 +607,7 @@ msgstr "প্রবেশ" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "%s কে স্থানান্তর করা সম্ভব হ msgid "Could not move %s" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে " -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 7e29c81daa..6de73a99fa 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 0931aa5aac..4481188cc3 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগ msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index b788744e13..eb998834c5 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 86fb33b284..3893041c54 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "প্রশাসন" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 4bf09e5aa9..c7b1c6ab6a 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index d2c640133c..17b51c67f3 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index fbb8402c9f..7c32923e87 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index d35c8d2db0..16a03e0c99 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 6fbdcf45b0..50c17f021b 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "No s'ha especificat el tipus d'objecte." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -248,7 +248,7 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Error en compartir" @@ -284,87 +284,87 @@ msgstr "Protegir amb contrasenya" msgid "Password" msgstr "Contrasenya" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Permet pujada pública" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enllaç per correu electrónic amb la persona" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Envia" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Estableix la data de venciment" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data de venciment" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Comparteix per correu electrònic" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pot editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control d'accés" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crea" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualitza" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "elimina" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "comparteix" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" @@ -467,7 +467,7 @@ msgstr "Accés prohibit" msgid "Cloud not found" msgstr "No s'ha trobat el núvol" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "controleu els vostres serveis web" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edita les categories" @@ -613,7 +609,7 @@ msgstr "Inici de sessió" msgid "Alternative Logins" msgstr "Acreditacions alternatives" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"Last-Translator: Josep Tomàs \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,54 +29,54 @@ msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" msgid "Could not move %s" msgstr " No s'ha pogut moure %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "No es pot establir la carpeta de pujada." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Testimoni no vàlid" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -232,7 +233,7 @@ msgstr "{count} fitxers" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s no es pot canviar el nom" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -330,11 +331,11 @@ msgstr "Actualment escanejant" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "directori" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "directoris" #: templates/part.list.php:89 msgid "file" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index eaef93d687..7e7d5f535e 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # rogerc, 2013 # Jordi Vilalta Prat , 2013 +# Josep Tomàs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 15:50+0000\n" +"Last-Translator: Josep Tomàs \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,18 +62,18 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Manca de requisits." #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "" +msgstr "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 8534e26563..094ecb43ea 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 9e5977b160..8915a32be2 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s ha compartit la carpeta %s amb vós" msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Baixa" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Puja" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 4681c1b935..47c8fe5646 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index fdb8edcebf..ea46c075cd 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administració" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "controleu els vostres serveis web" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 65bdf73f5b..ae55f72a30 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 3cec288bb7..6c82689132 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 9138ea0101..f315483018 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "Není určen typ objektu." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Chyba" @@ -248,7 +248,7 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -284,87 +284,87 @@ msgstr "Chránit heslem" msgid "Password" msgstr "Heslo" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Povolit veřejné nahrávání" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Odeslat osobě odkaz e-mailem" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Odeslat" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Nastavit datum vypršení platnosti" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Datum vypršení platnosti" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Sdílet e-mailem:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "vytvořit" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aktualizovat" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "smazat" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "sdílet" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail odeslán" @@ -467,7 +467,7 @@ msgstr "Přístup zakázán" msgid "Cloud not found" msgstr "Cloud nebyl nalezen" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "služby webu pod Vaší kontrolou" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Upravit kategorie" @@ -613,7 +609,7 @@ msgstr "Přihlásit" msgid "Alternative Logins" msgstr "Alternativní přihlášení" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Nelze přesunout %s - existuje soubor se stejným názvem" msgid "Could not move %s" msgstr "Nelze přesunout %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Nelze nastavit adresář pro nahrané soubory." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Neplatný adresář" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 99080f6468..f00d247570 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 0043decb9d..c2fc5f82c0 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s s Vámi sdílí složku %s" msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odeslat" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Náhled není dostupný pro" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 758837aa50..6ce865c36e 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 590145f5ff..6b85883f70 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administrace" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "služby webu pod Vaší kontrolou" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b94f900a6d..1fd4480a5a 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 865a34ee5d..46a826a5a2 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index f44f0d9603..5e46cbf1af 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Gwall" @@ -247,7 +247,7 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -283,87 +283,87 @@ msgstr "Diogelu cyfrinair" msgid "Password" msgstr "Cyfrinair" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "E-bostio dolen at berson" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Anfon" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Gosod dyddiad dod i ben" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Dyddiad dod i ben" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Rhannu drwy e-bost:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "creu" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "diweddaru" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "dileu" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "rhannu" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Anfonwyd yr e-bost" @@ -466,7 +466,7 @@ msgstr "Mynediad wedi'i wahardd" msgid "Cloud not found" msgstr "Methwyd canfod cwmwl" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "gwasanaethau gwe a reolir gennych" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Golygu categorïau" @@ -612,7 +608,7 @@ msgstr "Mewngofnodi" msgid "Alternative Logins" msgstr "Mewngofnodiadau Amgen" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" msgid "Could not move %s" msgstr "Methwyd symud %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 7d5adeb8a7..f69fd17ef0 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 7d6e39539f..cc93b290f3 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "Rhannodd %s blygell %s â chi" msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Does dim rhagolwg ar gael ar gyfer" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 43df1cb186..c667ef6797 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index d12d31ee5e..d1d57fed4d 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Gweinyddu" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "gwasanaethau gwe a reolir gennych" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 3394892a68..4a0b8b34ed 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 7271157e5d..7f1abf60f5 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 9ed55ab32c..be8521956e 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "Objekttypen er ikke angivet." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fejl" @@ -248,7 +248,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fejl under deling" @@ -284,87 +284,87 @@ msgstr "Beskyt med adgangskode" msgid "Password" msgstr "Kodeord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "E-mail link til person" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Send" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Vælg udløbsdato" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Udløbsdato" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Del via email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan redigere" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "opret" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "opdater" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "slet" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "del" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail afsendt" @@ -467,7 +467,7 @@ msgstr "Adgang forbudt" msgid "Cloud not found" msgstr "Sky ikke fundet" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Webtjenester under din kontrol" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Rediger kategorier" @@ -613,7 +609,7 @@ msgstr "Log ind" msgid "Alternative Logins" msgstr "Alternative logins" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ugyldig mappe." diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 0822a3fbae..0e346d0257 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index e0e89dbd5b..0ada470c56 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s delte mappen %s med dig" msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 8e26f0f1c1..2426bff970 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 900335a804..79ebf979fa 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Webtjenester under din kontrol" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 02620a5a83..555256023e 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 376fd0238e..2ad8275534 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index a6cacb3fc7..485aa4b54d 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -230,8 +230,8 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fehler" @@ -251,7 +251,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -287,87 +287,87 @@ msgstr "Passwortschutz" msgid "Password" msgstr "Passwort" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Senden" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Setze ein Ablaufdatum" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Über eine E-Mail teilen:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "erstellen" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aktualisieren" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "löschen" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "teilen" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-Mail wurde verschickt" @@ -470,7 +470,7 @@ msgstr "Zugriff verboten" msgid "Cloud not found" msgstr "Cloud nicht gefunden" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -481,10 +481,6 @@ msgid "" "Cheers!" msgstr "Hallo,\n\nwollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.\nSchau es dir an: %s\n\nGruß!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Web-Services unter Deiner Kontrolle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorien bearbeiten" @@ -616,7 +612,7 @@ msgstr "Einloggen" msgid "Alternative Logins" msgstr "Alternative Logins" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index f3cdeba0bf..af886c7745 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 77223a57f7..a6e55b5c8f 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s hat den Ordner %s mit Dir geteilt" msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 15dd9ceed0..26f44fe7e6 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index ca9e8ded5f..ee6adfdedf 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgstr "Administration" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Web-Services unter Deiner Kontrolle" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index de687856b6..29e35ace1e 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 50dc8c9c5f..c3c1d5b460 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 249b57410d..57f3771ddc 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: SteinQuadrat\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,8 +231,8 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fehler" @@ -252,7 +252,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -288,87 +288,87 @@ msgstr "Passwortschutz" msgid "Password" msgstr "Passwort" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Erlaube öffentliches hochladen" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Senden" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "erstellen" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aktualisieren" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "löschen" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "teilen" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email gesendet" @@ -471,7 +471,7 @@ msgstr "Zugriff verboten" msgid "Cloud not found" msgstr "Cloud wurde nicht gefunden" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -482,10 +482,6 @@ msgid "" "Cheers!" msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Web-Services unter Ihrer Kontrolle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorien ändern" @@ -617,7 +613,7 @@ msgstr "Einloggen" msgid "Alternative Logins" msgstr "Alternative Logins" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -32,54 +32,54 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 786101ca43..a8807b7a59 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index dca2954cde..50cab1988e 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s hat den Ordner %s mit Ihnen geteilt" msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index a4ce4fbb3a..b4769932d6 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 22f47921c0..858d0a8fa5 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administrator" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Web-Services unter Ihrer Kontrolle" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 0ded3edfd0..e045e1d630 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 88cd8acc44..aef7f90ddd 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index d04be94c87..b58b392163 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -232,8 +232,8 @@ msgstr "Δεν καθορίστηκε ο τύπος του αντικειμέν #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Σφάλμα" @@ -253,7 +253,7 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -289,87 +289,87 @@ msgstr "Προστασία συνθηματικού" msgid "Password" msgstr "Συνθηματικό" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Αποστολή συνδέσμου με email " -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Αποστολή" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Ορισμός ημ. λήξης" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Ημερομηνία λήξης" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Διαμοιρασμός μέσω email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "δημιουργία" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ενημέρωση" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "διαγραφή" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Το Email απεστάλη " @@ -472,7 +472,7 @@ msgstr "Δεν επιτρέπεται η πρόσβαση" msgid "Cloud not found" msgstr "Δεν βρέθηκε νέφος" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -483,10 +483,6 @@ msgid "" "Cheers!" msgstr "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Επεξεργασία κατηγοριών" @@ -618,7 +614,7 @@ msgstr "Είσοδος" msgid "Alternative Logins" msgstr "Εναλλακτικές Συνδέσεις" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδ msgid "Could not move %s" msgstr "Αδυναμία μετακίνησης του %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index e6e7f43c66..c2e0f5025f 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 6840ade874..3b1e18198b 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Λήψη" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 2005318227..fd278706de 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 77e1ccba26..121db23366 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Διαχειριστής" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 0a4b4c5e5c..f4ef42789d 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 253845aea8..b6557a9b6d 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index d3141f9dd8..80b5bdf950 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -247,7 +247,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -283,87 +283,87 @@ msgstr "" msgid "Password" msgstr "Passcode" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -466,7 +466,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web services under your control" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -573,12 +569,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -612,7 +608,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index ed7f74f619..6e5cbc2c65 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -40,18 +40,18 @@ msgstr "%s shared the folder %s with you" msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index b78612938d..c41a936390 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 00:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web services under your control" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 39521193ea..90f51b9850 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "Ne indikiĝis tipo de la objekto." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Eraro" @@ -248,7 +248,7 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -284,87 +284,87 @@ msgstr "Protekti per pasvorto" msgid "Password" msgstr "Pasvorto" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Retpoŝti la ligilon al ulo" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Sendi" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Agordi limdaton" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Limdato" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Kunhavigi per retpoŝto:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "povas redakti" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "krei" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "forigi" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "kunhavigi" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" @@ -467,7 +467,7 @@ msgstr "Aliro estas malpermesata" msgid "Cloud not found" msgstr "La nubo ne estas trovita" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "TTT-servoj regataj de vi" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Redakti kategoriojn" @@ -613,7 +609,7 @@ msgstr "Ensaluti" msgid "Alternative Logins" msgstr "Alternativaj ensalutoj" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas" msgid "Could not move %s" msgstr "Ne eblis movi %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "la alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Nevalida dosierujo." diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 0a8b013786..26ec2c1921 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index d2e80e9eed..8b289b88f3 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s kunhavigis la dosierujon %s kun vi" msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 26ec4d5c75..0b9861b786 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 1b5c7a3751..64672b9616 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administranto" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "TTT-servoj regataj de vi" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 4664e82e19..79c1f25a60 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 98ebab9995..65b83653c9 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 1000b828d5..bf67ad45a0 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: saskarip \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,8 +232,8 @@ msgstr "El tipo de objeto no está especificado." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -253,7 +253,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Error mientras comparte" @@ -289,87 +289,87 @@ msgstr "Protección con contraseña" msgid "Password" msgstr "Contraseña" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar enlace por correo electrónico a una persona" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Enviar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Establecer fecha de caducidad" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Fecha de caducidad" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Compartir por correo electrónico:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "puede editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control de acceso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crear" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "eliminar" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "compartir" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Correo electrónico enviado" @@ -472,7 +472,7 @@ msgstr "Acceso prohibido" msgid "Cloud not found" msgstr "No se encuentra la nube" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -483,10 +483,6 @@ msgid "" "Cheers!" msgstr "Oye,⏎ sólo te hago saber que %s compartido %s contigo.⏎ Míralo: %s ⏎Disfrutalo!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Servicios web bajo su control" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorías" @@ -618,7 +614,7 @@ msgstr "Entrar" msgid "Alternative Logins" msgstr "Inicios de sesión alternativos" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -31,54 +31,54 @@ msgstr "No se pudo mover %s - Un archivo con ese nombre ya existe." msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Incapaz de crear directorio de subida." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "No hay ningún error, el archivo se ha subido con éxito" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva upload_max_filesize en php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Directorio inválido." diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index ad8f78863b..687a5e488e 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -6,6 +6,7 @@ # asaez , 2013 # gmoriello , 2013 # mikelanabitarte , 2013 +# Korrosivo , 2013 # saskarip , 2013 # William Díaz , 2013 # xhiena , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 17:50+0000\n" +"Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,14 +70,14 @@ msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiad #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Requisitos incompletos." #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "" +msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 02e039f73e..d7df67a59e 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 6b28c9cbe1..e32d86797a 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "La contraseña introducida es errónea. Inténtelo de nuevo." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s compartió la carpeta %s contigo" msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descargar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "No hay vista previa disponible para" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index f8f5c9acdf..0204231bda 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index e0ddadc6f7..5d89f63fb2 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administración" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Servicios web bajo su control" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 81c4fc1fab..f298d006d8 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index cedba92b30..17d50e2f1e 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 39ffb3e499..7649556a37 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "El tipo de objeto no está especificado. " #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -247,7 +247,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Error al compartir" @@ -283,87 +283,87 @@ msgstr "Proteger con contraseña " msgid "Password" msgstr "Contraseña" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar el enlace por e-mail." -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Mandar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Asignar fecha de vencimiento" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Fecha de vencimiento" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Compartir a través de e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "podés editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control de acceso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crear" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "borrar" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "compartir" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "e-mail mandado" @@ -466,7 +466,7 @@ msgstr "Acceso prohibido" msgid "Cloud not found" msgstr "No se encontró ownCloud" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servicios web que controlás" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorías" @@ -612,7 +608,7 @@ msgstr "Iniciar sesión" msgid "Alternative Logins" msgstr "Nombre alternativos de usuarios" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" msgid "Could not move %s" msgstr "No se pudo mover %s " -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "No hay errores, el archivo fue subido con éxito" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "El archivo fue subido parcialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "No se subió ningún archivo " -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Error en la carpera temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "No hay suficiente capacidad de almacenamiento" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Directorio invalido." diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index e768d7eed3..597cf50109 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 6894fbe0dc..dd0c9c5614 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s compartió la carpeta %s con vos" msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descargar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 3c0f24f477..69308ad76a 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 5b8d4b7e5c..3acf25f44e 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administración" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servicios web que controlás" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index e875c2e210..6859a9473e 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 9995bb00e3..2bc1a1ff4d 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index acc33071f5..d96c79ee49 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s jagas sinuga »%s«" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -227,8 +227,8 @@ msgstr "Objekti tüüp pole määratletud." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Viga" @@ -248,7 +248,7 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -284,87 +284,87 @@ msgstr "Parooliga kaitstud" msgid "Password" msgstr "Parool" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Luba avalik üleslaadimine" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Saada link isikule e-postiga" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Saada" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Määra aegumise kuupäev" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Aegumise kuupäev" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Jaga e-postiga:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "saab muuta" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "loo" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "uuenda" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "kustuta" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "jaga" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-kiri on saadetud" @@ -413,11 +413,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Sinu failid on krüpteeritud. Kui sa pole taastamise võtit veel määranud, siis pole präast parooli taastamist mingit võimalust sinu andmeid tagasi saada. Kui sa pole kindel, mida teha, siis palun väta enne jätkamist ühendust oma administaatoriga. Oled sa kindel, et sa soovid jätkata?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Jah, ma tõesti soovin oma parooli praegu nullida" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -467,7 +467,7 @@ msgstr "Ligipääs on keelatud" msgid "Cloud not found" msgstr "Pilve ei leitud" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,11 +476,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" - -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "veebitenused sinu kontrolli all" +msgstr "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sinuga %s.\nVaata seda siin: %s\n\nTervitused!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -613,12 +609,12 @@ msgstr "Logi sisse" msgid "Alternative Logins" msgstr "Alternatiivsed sisselogimisviisid" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" -msgstr "" +msgstr "Hei,

lihtsalt annan sulle teada, et %s jagas sinuga »%s«.
Vaata seda!

Tervitades!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index a49f7b08e9..57e04c9e21 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,54 +29,54 @@ msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" msgid "Could not move %s" msgstr "%s liigutamine ebaõnnestus" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." -msgstr "" +msgstr "Üleslaadimiste kausta määramine ebaõnnestus." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Vigane kontrollkood" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi tõrget polnud, fail on üles laetud" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üleslaetud fail ületab MAX_FILE_SIZE suuruse, mis on HTML vormi jaoks määratud" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Vigane kaust." @@ -233,7 +233,7 @@ msgstr "{count} faili" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s ümbernimetamine ebaõnnestus" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -331,11 +331,11 @@ msgstr "Praegune skannimine" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "kaust" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "kaustad" #: templates/part.list.php:89 msgid "file" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index f7d2550070..b5851a1bb9 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 09:30+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,13 +47,13 @@ msgstr "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatu #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Privaatse võtme parool edukalt uuendatud." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige." #: files/error.php:7 msgid "" @@ -61,18 +61,18 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Nõutavad on puudu." #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "" +msgstr "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud." #: js/settings-admin.js:11 msgid "Saving..." @@ -82,15 +82,15 @@ msgstr "Salvestamine..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Saad avada oma privaatse võtme oma" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "isiklikes seadetes" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -99,11 +99,11 @@ msgstr "Krüpteerimine" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Taastevõtme parool" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -115,15 +115,15 @@ msgstr "Väljalülitatud" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Muuda taastevõtme parooli:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Vana taastevõtme parool" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Uus taastevõtme parool" #: templates/settings-admin.php:53 msgid "Change Password" @@ -131,39 +131,39 @@ msgstr "Muuda parooli" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Vana sisselogimise parool" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Praegune sisselogimise parool" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Uuenda privaatse võtme parooli" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Luba parooli taaste:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 9731627b6f..3349108667 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index adec3c3a7c..b4be21b44f 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Parool on vale. Proovi uuesti." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s jagas sinuga kausta %s" msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Lae alla" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 7979e6c859..74d96ccb2c 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index b94a859dde..44e9152e84 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "veebitenused sinu kontrolli all" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index ce17bbe62b..487a3246c6 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 0132bb9f21..72c8c0660a 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index 21fbf41a04..3c9471a273 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 09:20+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +25,7 @@ msgstr "WebDAV autentimine" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: templates/settings.php:7 msgid "" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index d0fa2e927a..082a4cc22f 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Objetu mota ez dago zehaztuta." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Errorea" @@ -246,7 +246,7 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -282,87 +282,87 @@ msgstr "Babestu pasahitzarekin" msgid "Password" msgstr "Pasahitza" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Postaz bidali lotura " -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Bidali" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Ezarri muga data" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Muga data" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Elkarbanatu eposta bidez:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "sortu" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "eguneratu" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ezabatu" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "elkarbanatu" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Eposta bidalia" @@ -465,7 +465,7 @@ msgstr "Sarrera debekatuta" msgid "Cloud not found" msgstr "Ez da hodeia aurkitu" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web zerbitzuak zure kontrolpean" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editatu kategoriak" @@ -611,7 +607,7 @@ msgstr "Hasi saioa" msgid "Alternative Logins" msgstr "Beste erabiltzaile izenak" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" msgid "Could not move %s" msgstr "Ezin dira fitxategiak mugitu %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ez da errorerik egon, fitxategia ongi igo da" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategia HTML formularioan zehaztutako MAX_FILE_SIZE direktiba baino handidagoa da." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Baliogabeko karpeta." diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 7f6e3446bb..54174338e1 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 40daad6272..3bc0ad973e 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%sk zurekin %s karpeta elkarbanatu du" msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Igo" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index db50963306..71c55b41e0 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index c5a88da9a9..7793a21021 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web zerbitzuak zure kontrolpean" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index d3c3df48a0..821f0a6e21 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 3f085ad089..8f0a226a5e 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 523c31b84f..883ac61112 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "نوع شی تعیین نشده است." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "خطا" @@ -246,7 +246,7 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -282,87 +282,87 @@ msgstr "نگهداری کردن رمز عبور" msgid "Password" msgstr "گذرواژه" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "پیوند ایمیل برای شخص." -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "ارسال" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "تنظیم تاریخ انقضا" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "تاریخ انقضا" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "از طریق ایمیل به اشتراک بگذارید :" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "ایجاد" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "به روز" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "پاک کردن" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "ایمیل ارسال شد" @@ -465,7 +465,7 @@ msgstr "اجازه دسترسی به مناطق ممنوعه را ندارید" msgid "Cloud not found" msgstr "پیدا نشد" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "سرویس های تحت وب در کنترل شما" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ویرایش گروه" @@ -611,7 +607,7 @@ msgstr "ورود" msgid "Alternative Logins" msgstr "ورود متناوب" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "%s نمی تواند حرکت کند - در حال حاضر پرونده msgid "Could not move %s" msgstr "%s نمی تواند حرکت کند " -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index e336407ad2..0dc81a6887 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 02940cf74f..33c719099f 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%sپوشه %s را با شما به اشتراک گذاشت" msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "دانلود" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 51f44a8d33..846d5024e3 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 90e95940af..34c0d93f36 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "مدیر" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "سرویس های تحت وب در کنترل شما" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index c2575baf27..0513392879 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index db35141c3b..93c362086b 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 61bc0ed86b..2681c62651 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Virhe" @@ -247,7 +247,7 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -283,87 +283,87 @@ msgstr "Suojaa salasanalla" msgid "Password" msgstr "Salasana" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Lähetä linkki sähköpostitse" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Lähetä" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Aseta päättymispäivä" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Päättymispäivä" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Jaa sähköpostilla:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "voi muokata" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "luo" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "päivitä" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "poista" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "jaa" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Sähköposti lähetetty" @@ -466,7 +466,7 @@ msgstr "Pääsy estetty" msgid "Cloud not found" msgstr "Pilveä ei löydy" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "verkkopalvelut hallinnassasi" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Muokkaa luokkia" @@ -612,7 +608,7 @@ msgstr "Kirjaudu sisään" msgid "Alternative Logins" msgstr "Vaihtoehtoiset kirjautumiset" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemas msgid "Could not move %s" msgstr "Kohteen %s siirto ei onnistunut" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ladattavan tiedoston maksimikoko ylittää MAX_FILE_SIZE dirketiivin, joka on määritelty HTML-lomakkeessa" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Virheellinen kansio." diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 88c4c2a181..b99169560c 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 97f099a1d3..c20aae6bb2 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s jakoi kansion %s kanssasi" msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Lataa" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index e61bb45791..0cdbadd56b 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 90c1cccb43..86c918dd80 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Ylläpitäjä" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "verkkopalvelut hallinnassasi" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 8ff86a7e78..bffc977b0d 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 68f73adf61..7a4d147d66 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index e608363f0f..8566e5de5f 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Adalberto Rodrigues \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -230,8 +230,8 @@ msgstr "Le type d'objet n'est pas spécifié." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Erreur" @@ -251,7 +251,7 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -287,87 +287,87 @@ msgstr "Protéger par un mot de passe" msgid "Password" msgstr "Mot de passe" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Autoriser l'upload par les utilisateurs non enregistrés" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Envoyez le lien par email" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Envoyer" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Spécifier la date d'expiration" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Date d'expiration" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Partager via e-mail :" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "créer" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "mettre à jour" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "supprimer" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "partager" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email envoyé" @@ -470,7 +470,7 @@ msgstr "Accès interdit" msgid "Cloud not found" msgstr "Introuvable" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -481,10 +481,6 @@ msgid "" "Cheers!" msgstr "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "services web sous votre contrôle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editer les catégories" @@ -616,7 +612,7 @@ msgstr "Connexion" msgid "Alternative Logins" msgstr "Logins alternatifs" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -30,54 +30,54 @@ msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" msgid "Could not move %s" msgstr "Impossible de déplacer %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Impossible de définir le dossier pour l'upload, charger." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Jeton non valide" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été envoyé avec succès." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier envoyé dépasse la directive MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Dossier invalide." diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 1c242b645b..20bc5932c1 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 7cc6c36f4c..e2c1dceabf 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s a partagé le répertoire %s avec vous" msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Télécharger" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index eef854f4d2..b3a397eee8 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index dce6cf2ab5..55ae0b39b1 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administration" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "services web sous votre contrôle" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index bf159feeed..4b611d1396 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 8b30b6c07d..b0cb6480d5 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index e8bd707eb4..2ca6926f62 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Erro" @@ -247,7 +247,7 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -283,87 +283,87 @@ msgstr "Protexido con contrasinais" msgid "Password" msgstr "Contrasinal" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar ligazón por correo" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Enviar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Definir a data de caducidade" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data de caducidade" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Compartir por correo:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pode editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control de acceso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crear" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "eliminar" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "compartir" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Correo enviado" @@ -466,7 +466,7 @@ msgstr "Acceso denegado" msgid "Cloud not found" msgstr "Nube non atopada" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servizos web baixo o seu control" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar as categorías" @@ -612,7 +608,7 @@ msgstr "Conectar" msgid "Alternative Logins" msgstr "Accesos alternativos" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Non se moveu %s - Xa existe un ficheiro con ese nome." msgid "Could not move %s" msgstr "Non foi posíbel mover %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Non houbo erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede da directiva MAX_FILE_SIZE especificada no formulario HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "O directorio é incorrecto." diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 410acbd581..04b2f8066b 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 14d04a7ec2..01fad78c28 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s compartiu o cartafol %s con vostede" msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descargar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Enviar" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 4eff86ac19..3099684ce5 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index e62d4879cd..ec8edc5d4e 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administración" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servizos web baixo o seu control" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 00193b8e68..d073a2db71 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index ecdd18174c..18a618a495 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index f2f73c62a5..8eebb30ca3 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "סוג הפריט לא צוין." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "שגיאה" @@ -247,7 +247,7 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -283,87 +283,87 @@ msgstr "הגנה בססמה" msgid "Password" msgstr "סיסמא" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "שליחת קישור בדוא״ל למשתמש" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "שליחה" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "הגדרת תאריך תפוגה" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "תאריך התפוגה" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "שיתוף באמצעות דוא״ל:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "יצירה" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "עדכון" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "מחיקה" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "שיתוף" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" @@ -466,7 +466,7 @@ msgstr "הגישה נחסמה" msgid "Cloud not found" msgstr "ענן לא נמצא" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "שירותי רשת תחת השליטה שלך" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ערוך קטגוריות" @@ -612,7 +608,7 @@ msgstr "כניסה" msgid "Alternative Logins" msgstr "כניסות אלטרנטיביות" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "לא ניתן להעביר את %s - קובץ בשם הזה כבר קי msgid "Could not move %s" msgstr "לא ניתן להעביר את %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "תיקייה שגויה." diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 9e418a262f..b9805273bb 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 4e039d7668..9cd62a69c1 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s שיתף עמך את התיקייה %s" msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "הורדה" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "העלאה" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 83f118e94f..836bfb84c6 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 1294bfdc82..bcf5f3f287 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "מנהל" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "שירותי רשת תחת השליטה שלך" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 0be65ca663..9345a681d0 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index c21103fa52..4c3322b606 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 18d44932d4..ed2c3fa7c1 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -247,7 +247,7 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -283,87 +283,87 @@ msgstr "" msgid "Password" msgstr "पासवर्ड" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -466,7 +466,7 @@ msgstr "" msgid "Cloud not found" msgstr "क्लौड नहीं मिला " -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -612,7 +608,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 76cc09e1fa..54e9df71dc 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index f45e4c2c9f..2d866bd4d2 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Greška" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -282,87 +282,87 @@ msgstr "Zaštiti lozinkom" msgid "Password" msgstr "Lozinka" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Postavi datum isteka" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Dijeli preko email-a:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "kreiraj" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ažuriraj" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "izbriši" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "djeli" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Pristup zabranjen" msgid "Cloud not found" msgstr "Cloud nije pronađen" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web usluge pod vašom kontrolom" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Uredi kategorije" @@ -611,7 +607,7 @@ msgstr "Prijava" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nema pogreške, datoteka je poslana uspješno." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Poslana datoteka je parcijalno poslana" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Datoteka nije poslana" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Nedostaje privremeni direktorij" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index b4828166a4..4012bfed40 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 76292dea41..fe7c114bc8 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 90f0361d5b..9df1866239 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index de98c266a5..6469184758 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Administrator" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web usluge pod vašom kontrolom" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index ef922746a0..4762149a04 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 975d9b9f4d..1cdcc6e7b1 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 94736ed98a..7d16f1cb9f 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Az objektum típusa nincs megadva." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Hiba" @@ -247,7 +247,7 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -283,87 +283,87 @@ msgstr "Jelszóval is védem" msgid "Password" msgstr "Jelszó" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Email címre küldjük el" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Küldjük el" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Legyen lejárati idő" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "A lejárati idő" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Megosztás emaillel:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nincs találat" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "módosíthat" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "jogosultság" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "létrehoz" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "szerkeszt" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "töröl" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "megoszt" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Az emailt elküldtük" @@ -466,7 +466,7 @@ msgstr "A hozzáférés nem engedélyezett" msgid "Cloud not found" msgstr "A felhő nem található" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "webszolgáltatások saját kézben" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategóriák szerkesztése" @@ -612,7 +608,7 @@ msgstr "Bejelentkezés" msgid "Alternative Logins" msgstr "Alternatív bejelentkezés" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a név msgid "Could not move %s" msgstr "Nem sikerült %s áthelyezése" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Érvénytelen mappa." diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index f2fcf3145e..d33444d639 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 92bcf28631..6072a38959 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s megosztotta Önnel ezt a mappát: %s" msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Letöltés" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index e8ed7eae50..225d42ad0c 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 3af4a667f3..17e58b2195 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Adminsztráció" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "webszolgáltatások saját kézben" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 42cec70d3b..038cf2544d 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 4c3d5edef8..d2e20cc178 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 9bee1877f9..2238a3574f 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 1ddc27eaf8..1cbc795d67 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index bf114d281d..656756871b 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index c47782b0ee..1b2e7c2cf7 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 7aae4ee9ae..17b88055ec 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 95472114c9..60ef4ee913 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Contrasigno" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Invia" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Accesso prohibite" msgid "Cloud not found" msgstr "Nube non trovate" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servicios web sub tu controlo" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Modificar categorias" @@ -611,7 +607,7 @@ msgstr "Aperir session" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nulle file esseva incargate." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index d5dd7cf6d5..6bffaa4749 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 1140c74f32..c1be735155 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Discargar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Incargar" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 93c82b99f9..fca7c7d270 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 183ac93eea..b2714e2238 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Administration" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servicios web sub tu controlo" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 9d4272ee3d..8771fad6cc 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 12092d02bc..30246d1e6b 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 56590d0037..cf436fd49e 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Tipe objek tidak ditentukan." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Galat" @@ -246,7 +246,7 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -282,87 +282,87 @@ msgstr "Lindungi dengan sandi" msgid "Password" msgstr "Sandi" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Emailkan tautan ini ke orang" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Kirim" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Setel tanggal kedaluwarsa" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Tanggal kedaluwarsa" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Bagian lewat email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "dapat mengedit" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "kontrol akses" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "buat" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "perbarui" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "hapus" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "bagikan" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Dilindungi sandi" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Galat ketika menyetel tanggal kedaluwarsa" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email terkirim" @@ -465,7 +465,7 @@ msgstr "Akses ditolak" msgid "Cloud not found" msgstr "Cloud tidak ditemukan" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "layanan web dalam kontrol Anda" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edit kategori" @@ -611,7 +607,7 @@ msgstr "Masuk" msgid "Alternative Logins" msgstr "Cara Alternatif untuk Masuk" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" msgid "Could not move %s" msgstr "Tidak dapat memindahkan %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Direktori tidak valid." diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 07a10c8501..366295d65d 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index c0d794fc2d..a897969732 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s membagikan folder %s dengan Anda" msgid "%s shared the file %s with you" msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Unduh" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Unggah" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Tidak ada pratinjau tersedia untuk" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 20a5b3a585..078351e108 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 9704b2b5e3..afa54fb36f 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "layanan web dalam kontrol Anda" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 14933d3e95..ce164860e2 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index eb02d8be93..bda4f92bbf 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 8b8af544e1..cd642510ac 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Villa" @@ -247,7 +247,7 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -283,87 +283,87 @@ msgstr "Verja með lykilorði" msgid "Password" msgstr "Lykilorð" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Senda vefhlekk í tölvupóstu til notenda" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Senda" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Setja gildistíma" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Gildir til" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Deila með tölvupósti:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "getur breytt" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "mynda" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "uppfæra" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "eyða" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "deila" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Tölvupóstur sendur" @@ -466,7 +466,7 @@ msgstr "Aðgangur bannaður" msgid "Cloud not found" msgstr "Ský finnst ekki" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "vefþjónusta undir þinni stjórn" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Breyta flokkum" @@ -612,7 +608,7 @@ msgstr "Skrá inn" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" msgid "Could not move %s" msgstr "Gat ekki fært %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ógild mappa." diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 479c1a9b4d..dae85d3ec7 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 2b241cf732..bacb69268e 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s deildi möppunni %s með þér" msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index dedcb91b1e..d51876cc42 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 6dc7349b74..039b987731 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Stjórnun" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "vefþjónusta undir þinni stjórn" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/is/settings.po b/l10n/is/settings.po index ca29e7aecd..f4705a9bbe 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 8dc400a555..43cbf8d957 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 8468e03003..b66fdfa5b7 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -228,8 +228,8 @@ msgstr "Il tipo di oggetto non è specificato." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Errore" @@ -249,7 +249,7 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -285,87 +285,87 @@ msgstr "Proteggi con password" msgid "Password" msgstr "Password" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Consenti caricamento pubblico" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Invia collegamento via email" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Invia" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Imposta data di scadenza" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data di scadenza" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Condividi tramite email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "può modificare" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "creare" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aggiornare" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "elimina" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "condividi" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Messaggio inviato" @@ -468,7 +468,7 @@ msgstr "Accesso negato" msgid "Cloud not found" msgstr "Nuvola non trovata" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -479,10 +479,6 @@ msgid "" "Cheers!" msgstr "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nSaluti!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servizi web nelle tue mani" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Modifica categorie" @@ -614,7 +610,7 @@ msgstr "Accedi" msgid "Alternative Logins" msgstr "Accessi alternativi" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Impossibile spostare %s - un file con questo nome esiste già" msgid "Could not move %s" msgstr "Impossibile spostare %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Impossibile impostare una cartella di caricamento." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Token non valido" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato caricato correttamente" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file inviato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Cartella non valida." diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 5ef791c24c..dbeb572b73 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 7583327697..ea7dd8a25f 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -40,18 +40,18 @@ msgstr "%s ha condiviso la cartella %s con te" msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Scarica" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carica" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 2c97b399f6..9b6ba8be1e 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index c9aa8d1344..05a638d00a 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servizi web nelle tue mani" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 45ffe0cf8c..ab0358f507 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index cd4b84d677..035f855cda 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 4fa5512a6a..0dc9febe36 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "オブジェクタイプが指定されていません。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "エラー" @@ -248,7 +248,7 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -284,87 +284,87 @@ msgstr "パスワード保護" msgid "Password" msgstr "パスワード" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "パブリックなアップロードを許可" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "メールリンク" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "送信" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "有効期限を設定" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "有効期限" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "メール経由で共有:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "共有解除" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "編集可能" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "アクセス権限" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "作成" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "削除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "共有" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "メールを送信しました" @@ -467,7 +467,7 @@ msgstr "アクセスが禁止されています" msgid "Cloud not found" msgstr "見つかりません" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "管理下のウェブサービス" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "カテゴリを編集" @@ -613,7 +609,7 @@ msgstr "ログイン" msgid "Alternative Logins" msgstr "代替ログイン" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "%s を移動できませんでした ― この名前のファイルは msgid "Could not move %s" msgstr "%s を移動できませんでした" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "アップロードディレクトリを設定出来ません。" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "無効なトークン" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "アップロードファイルは一部分だけアップロードされました" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "一時保存フォルダが見つかりません" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "無効なディレクトリです。" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 787934be5f..fe9abee051 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 7d87fcc69e..ecd759fa17 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s はフォルダー %s をあなたと共有中です" msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "アップロード" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "プレビューはありません" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 4bc00b073b..fc091ddc6d 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 019949f4b8..bbad08a0d4 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "管理" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "管理下のウェブサービス" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 201c4c38c0..bfce9e1f09 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 386674a3a4..109198c8aa 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 1242d91bdc..5dea5056df 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "პაროლი" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 8baaaed48f..d0b14f958c 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 69cd02d9d2..303fcd677d 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "ობიექტის ტიპი არ არის მითი #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "შეცდომა" @@ -246,7 +246,7 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -282,87 +282,87 @@ msgstr "პაროლით დაცვა" msgid "Password" msgstr "პაროლი" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "გაგზავნა" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "მიუთითე ვადის გასვლის დრო" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "ვადის გასვლის დრო" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "გააზიარე მეილზე" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "შექმნა" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "განახლება" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "წაშლა" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "გაზიარება" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "იმეილი გაიგზავნა" @@ -465,7 +465,7 @@ msgstr "წვდომა აკრძალულია" msgid "Cloud not found" msgstr "ღრუბელი არ არსებობს" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web services under your control" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "კატეგორიების რედაქტირება" @@ -611,7 +607,7 @@ msgstr "შესვლა" msgid "Alternative Logins" msgstr "ალტერნატიული Login–ი" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "%s –ის გადატანა ვერ მოხერხდა msgid "Could not move %s" msgstr "%s –ის გადატანა ვერ მოხერხდა" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index ef21a65394..fd479ccc6a 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 56a1b27e9c..b6d4ad94ea 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s–მა გაგიზიარათ ფოლდერი %s" msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "წინასწარი დათვალიერება შეუძლებელია" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 4fb606d5ec..d9a9acc60e 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 6201451b3b..7bbaf8ea1e 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "ადმინისტრატორი" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web services under your control" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 995622a2e6..3852e35cdd 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 6527a313d7..95f7bc9cef 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 6f26c46e57..aef3d399ed 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "객체 유형이 지정되지 않았습니다." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "오류" @@ -247,7 +247,7 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -283,87 +283,87 @@ msgstr "암호 보호" msgid "Password" msgstr "암호" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "이메일 주소" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "전송" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "만료 날짜 설정" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "만료 날짜" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "이메일로 공유:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "편집 가능" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "접근 제어" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "생성" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "업데이트" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "삭제" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "공유" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "이메일 발송됨" @@ -466,7 +466,7 @@ msgstr "접근 금지됨" msgid "Cloud not found" msgstr "클라우드를 찾을 수 없습니다" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "내가 관리하는 웹 서비스" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "분류 수정" @@ -612,7 +608,7 @@ msgstr "로그인" msgid "Alternative Logins" msgstr "대체 " -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존 msgid "Could not move %s" msgstr "%s 항목을 이딩시키지 못하였음" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index cc510adbf8..e29ae97d1c 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 49ab0bf739..725feffbd3 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "다운로드" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "업로드" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 876dd35ddc..6753ddeb5c 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 7ca98be82a..d8817fc20b 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "관리자" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "내가 관리하는 웹 서비스" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index c1cdbe64c9..03bf579c30 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 0ac6f84821..7fbf6e7fd6 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 8b5f204a03..8ed5c8adf9 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "هه‌ڵه" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "وشەی تێپەربو" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "هیچ نه‌دۆزرایه‌وه‌" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 4d8c6bf4df..86c085f35e 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "داگرتن" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index a8848cb116..6957a1198f 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 756f78fbb3..d5487d9916 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index ea96d59ab2..24f6333436 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index bc07ba63a5..255f0e1c0c 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 28b333e1ce..bd8aa19e85 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Michel Weimerskirch \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -226,8 +226,8 @@ msgstr "Den Typ vum Object ass net uginn." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Feeler" @@ -247,7 +247,7 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -283,87 +283,87 @@ msgstr "Passwuertgeschützt" msgid "Password" msgstr "Passwuert" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Ëffentlechen Upload erlaaben" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Link enger Persoun mailen" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Schécken" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Verfallsdatum setzen" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Verfallsdatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Via E-Mail deelen:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kann änneren" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "erstellen" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aktualiséieren" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "läschen" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "deelen" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email geschéckt" @@ -466,7 +466,7 @@ msgstr "Zougrëff net erlaabt" msgid "Cloud not found" msgstr "Cloud net fonnt" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Hallo,\n\nech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.\nKucken: %s\n\nE schéine Bonjour!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Web-Servicer ënnert denger Kontroll" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorien editéieren" @@ -612,7 +608,7 @@ msgstr "Umellen" msgid "Alternative Logins" msgstr "Alternativ Umeldungen" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Et ass kee Fichier ropgeluede ginn" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 24e445eeca..2579d733c7 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 38eb47a8fb..6a624898cd 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 6c22764330..d1aed4cdc2 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 19:10+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 58acc8cbc9..d00c6c9441 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Web-Servicer ënnert denger Kontroll" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 7a8b99829c..e681ddb9ea 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 19:20+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 219f5cf307..5ed78e505b 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 19:10+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index b5f9d66468..9d3ff85a32 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "Objekto tipas nenurodytas." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Klaida" @@ -248,7 +248,7 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -284,87 +284,87 @@ msgstr "Apsaugotas slaptažodžiu" msgid "Password" msgstr "Slaptažodis" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Nusiųsti nuorodą paštu" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Siųsti" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Nustatykite galiojimo laiką" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Galiojimo laikas" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Dalintis per el. paštą:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "sukurti" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "atnaujinti" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ištrinti" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "dalintis" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Laiškas išsiųstas" @@ -467,7 +467,7 @@ msgstr "Priėjimas draudžiamas" msgid "Cloud not found" msgstr "Negalima rasti" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "jūsų valdomos web paslaugos" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Redaguoti kategorijas" @@ -613,7 +609,7 @@ msgstr "Prisijungti" msgid "Alternative Logins" msgstr "Alternatyvūs prisijungimai" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja" msgid "Could not move %s" msgstr "Nepavyko perkelti %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Įkeliamas failas yra didesnis nei leidžia upload_max_filesize php.ini faile:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE nustatymą, kuris naudojamas HTML formoje." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Neteisingas aplankas" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 28437191ca..97272ce39e 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 07eee4f146..d5ccd62838 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -40,18 +40,18 @@ msgstr "%s pasidalino su jumis %s aplanku" msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Peržiūra nėra galima" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 76ee3a80b6..8f295d2165 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 51e72311b5..7cbe75ce39 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administravimas" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "jūsų valdomos web paslaugos" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 770dc44c77..3417170078 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 33f1695bc8..aa95fea16d 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 6a104f69c3..a9e4d2ec8c 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Nav norādīts objekta tips." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Kļūda" @@ -246,7 +246,7 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -282,87 +282,87 @@ msgstr "Aizsargāt ar paroli" msgid "Password" msgstr "Parole" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Sūtīt saiti personai pa e-pastu" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Sūtīt" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Iestaties termiņa datumu" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Termiņa datums" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Dalīties, izmantojot e-pastu:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "izveidot" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "atjaunināt" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "dzēst" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "dalīties" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Vēstule nosūtīta" @@ -465,7 +465,7 @@ msgstr "Pieeja ir liegta" msgid "Cloud not found" msgstr "Mākonis netika atrasts" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "tīmekļa servisi tavā varā" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Rediģēt kategoriju" @@ -611,7 +607,7 @@ msgstr "Ierakstīties" msgid "Alternative Logins" msgstr "Alternatīvās pieteikšanās" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu" msgid "Could not move %s" msgstr "Nevarēja pārvietot %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, datne augšupielādēta veiksmīga" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Augšupielādētā datne ir tikai daļēji augšupielādēta" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Nederīga direktorija." diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 3766bd9110..bc3d9d858e 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index d159420f8b..a6ceabe1d3 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s ar jums dalījās ar mapi %s" msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index bb34d21680..7f054bdf76 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 56ef8b5899..18459b9515 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Administratori" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "tīmekļa servisi tavā varā" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index ee84741e69..db085abccd 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 4daadb9346..5e89fe1105 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index b5ffeba213..80450d1dc5 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Не е специфициран типот на објект." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Сподели" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -282,87 +282,87 @@ msgstr "Заштити со лозинка" msgid "Password" msgstr "Лозинка" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Прати врска по е-пошта на личност" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Прати" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Постави рок на траење" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Рок на траење" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Сподели по е-пошта:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "може да се измени" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "креирај" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ажурирај" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "избриши" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "сподели" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Е-порака пратена" @@ -465,7 +465,7 @@ msgstr "Забранет пристап" msgid "Cloud not found" msgstr "Облакот не е најден" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "веб сервиси под Ваша контрола" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Уреди категории" @@ -611,7 +607,7 @@ msgstr "Најава" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Големината на датотеката ја надминува MAX_FILE_SIZE директивата која беше специфицирана во HTML формата" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 7b4ebc5993..1d7c7dfe9c 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 56415f9de3..65bef29335 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s ја сподели папката %s со Вас" msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Преземи" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Подигни" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Нема достапно преглед за" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index d4f949879a..1735e5e54f 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index d4656ea09d..d40e510f7f 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Админ" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "веб сервиси под Ваша контрола" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index fcaab41108..71578c58dd 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 9ad37ece8d..01aac0a0de 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po new file mode 100644 index 0000000000..11842cfad4 --- /dev/null +++ b/l10n/ml_IN/core.po @@ -0,0 +1,628 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:97 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:289 +msgid "Settings" +msgstr "" + +#: js/js.js:721 +msgid "seconds ago" +msgstr "" + +#: js/js.js:722 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:723 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:724 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:725 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:726 +msgid "today" +msgstr "" + +#: js/js.js:727 +msgid "yesterday" +msgstr "" + +#: js/js.js:728 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:729 +msgid "last month" +msgstr "" + +#: js/js.js:730 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:731 +msgid "months ago" +msgstr "" + +#: js/js.js:732 +msgid "last year" +msgstr "" + +#: js/js.js:733 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:117 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:122 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:141 js/oc-dialogs.js:200 +msgid "Error loading file picker template" +msgstr "" + +#: js/oc-dialogs.js:164 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:185 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:125 js/share.js:660 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:136 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:143 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:152 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:154 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:172 +msgid "Share with" +msgstr "" + +#: js/share.js:177 +msgid "Share with link" +msgstr "" + +#: js/share.js:180 +msgid "Password protect" +msgstr "" + +#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +msgid "Password" +msgstr "" + +#: js/share.js:187 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:191 +msgid "Email link to person" +msgstr "" + +#: js/share.js:192 +msgid "Send" +msgstr "" + +#: js/share.js:197 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:198 +msgid "Expiration date" +msgstr "" + +#: js/share.js:230 +msgid "Share via email:" +msgstr "" + +#: js/share.js:232 +msgid "No people found" +msgstr "" + +#: js/share.js:270 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:306 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:327 +msgid "Unshare" +msgstr "" + +#: js/share.js:339 +msgid "can edit" +msgstr "" + +#: js/share.js:341 +msgid "access control" +msgstr "" + +#: js/share.js:344 +msgid "create" +msgstr "" + +#: js/share.js:347 +msgid "update" +msgstr "" + +#: js/share.js:350 +msgid "delete" +msgstr "" + +#: js/share.js:353 +msgid "share" +msgstr "" + +#: js/share.js:387 js/share.js:607 +msgid "Password protected" +msgstr "" + +#: js/share.js:620 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:632 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:647 +msgid "Sending ..." +msgstr "" + +#: js/share.js:658 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:60 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:4 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:12 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: templates/login.php:19 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:22 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:24 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +msgid "Please update your PHP installation to use ownCloud securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:44 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:62 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:64 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:74 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 +msgid "will be used" +msgstr "" + +#: templates/installation.php:137 +msgid "Database user" +msgstr "" + +#: templates/installation.php:144 +msgid "Database password" +msgstr "" + +#: templates/installation.php:149 +msgid "Database name" +msgstr "" + +#: templates/installation.php:159 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:166 +msgid "Database host" +msgstr "" + +#: templates/installation.php:172 +msgid "Finish setup" +msgstr "" + +#: templates/layout.user.php:43 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:68 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:34 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/login.php:47 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:16 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po new file mode 100644 index 0000000000..90706b4f0b --- /dev/null +++ b/l10n/ml_IN/files.po @@ -0,0 +1,348 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:22 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:62 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:69 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:70 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:73 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:74 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:75 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:76 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:94 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:126 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:12 +msgid "Files" +msgstr "" + +#: js/file-upload.js:11 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:24 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:64 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:167 js/files.js:266 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:233 js/files.js:339 +msgid "URL cannot be empty." +msgstr "" + +#: js/file-upload.js:238 lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 +#: js/files.js:693 js/files.js:731 +msgid "Error" +msgstr "" + +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +msgid "Pending" +msgstr "" + +#: js/filelist.js:302 js/filelist.js:304 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:302 js/filelist.js:304 +msgid "replace" +msgstr "" + +#: js/filelist.js:302 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:302 js/filelist.js:304 +msgid "cancel" +msgstr "" + +#: js/filelist.js:349 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:349 +msgid "undo" +msgstr "" + +#: js/filelist.js:374 +msgid "perform delete operation" +msgstr "" + +#: js/filelist.js:456 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:459 js/filelist.js:517 +msgid "files uploading" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:231 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:344 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:744 templates/index.php:69 +msgid "Name" +msgstr "" + +#: js/files.js:745 templates/index.php:80 +msgid "Size" +msgstr "" + +#: js/files.js:746 templates/index.php:82 +msgid "Modified" +msgstr "" + +#: js/files.js:765 +msgid "1 folder" +msgstr "" + +#: js/files.js:767 +msgid "{count} folders" +msgstr "" + +#: js/files.js:775 +msgid "1 file" +msgstr "" + +#: js/files.js:777 +msgid "{count} files" +msgstr "" + +#: lib/app.php:73 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:42 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:48 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:54 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:61 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:75 +msgid "Download" +msgstr "" + +#: templates/index.php:87 templates/index.php:88 +msgid "Unshare" +msgstr "" + +#: templates/index.php:107 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:109 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:114 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:117 +msgid "Current scanning" +msgstr "" + +#: templates/part.list.php:78 +msgid "directory" +msgstr "" + +#: templates/part.list.php:80 +msgid "directories" +msgstr "" + +#: templates/part.list.php:89 +msgid "file" +msgstr "" + +#: templates/part.list.php:91 +msgid "files" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ml_IN/files_encryption.po b/l10n/ml_IN/files_encryption.po new file mode 100644 index 0000000000..788f7259d4 --- /dev/null +++ b/l10n/ml_IN/files_encryption.po @@ -0,0 +1,172 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:51 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:53 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:7 +msgid "" +"Your private key is not valid! Likely your password was changed outside the " +"ownCloud system (e.g. your corporate directory). You can update your private" +" key password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: hooks/hooks.php:44 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:45 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" + +#: js/settings-admin.js:11 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:5 +msgid "" +"Your private key is not valid! Maybe the your password was changed from " +"outside." +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "You can unlock your private key in your " +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:5 templates/settings-personal.php:4 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:10 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:54 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:62 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:41 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:48 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:14 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:16 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:24 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:30 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:35 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:45 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:47 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:63 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:64 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ml_IN/files_external.po b/l10n/ml_IN/files_external.po new file mode 100644 index 0000000000..1b638a2af4 --- /dev/null +++ b/l10n/ml_IN/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:66 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:36 js/google.js:93 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:431 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:434 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ml_IN/files_sharing.po b/l10n/ml_IN/files_sharing.po new file mode 100644 index 0000000000..dbf8befe5f --- /dev/null +++ b/l10n/ml_IN/files_sharing.po @@ -0,0 +1,56 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:9 +msgid "Submit" +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:28 templates/public.php:90 +msgid "Download" +msgstr "" + +#: templates/public.php:45 templates/public.php:48 +msgid "Upload" +msgstr "" + +#: templates/public.php:58 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:87 +msgid "No preview available for" +msgstr "" diff --git a/l10n/ml_IN/files_trashbin.po b/l10n/ml_IN/files_trashbin.po new file mode 100644 index 0000000000..6aae4c8731 --- /dev/null +++ b/l10n/ml_IN/files_trashbin.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:97 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +msgid "Error" +msgstr "" + +#: js/trash.js:34 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:123 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:176 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:177 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:186 +msgid "1 folder" +msgstr "" + +#: js/trash.js:188 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:196 +msgid "1 file" +msgstr "" + +#: js/trash.js:198 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ml_IN/files_versions.po b/l10n/ml_IN/files_versions.po new file mode 100644 index 0000000000..7fbfa21dcc --- /dev/null +++ b/l10n/ml_IN/files_versions.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:69 +msgid "No old versions available" +msgstr "" + +#: history.php:74 +msgid "No path specified" +msgstr "" + +#: js/versions.js:6 +msgid "Versions" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po new file mode 100644 index 0000000000..d4532ad9a4 --- /dev/null +++ b/l10n/ml_IN/lib.po @@ -0,0 +1,247 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:360 +msgid "Help" +msgstr "" + +#: app.php:373 +msgid "Personal" +msgstr "" + +#: app.php:384 +msgid "Settings" +msgstr "" + +#: app.php:396 +msgid "Users" +msgstr "" + +#: app.php:409 +msgid "Apps" +msgstr "" + +#: app.php:417 +msgid "Admin" +msgstr "" + +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + +#: files.php:210 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:211 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:212 files.php:245 +msgid "Back to Files" +msgstr "" + +#: files.php:242 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:236 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup/abstractdatabase.php:22 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup/abstractdatabase.php:25 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup/abstractdatabase.php:28 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 +#: setup/postgresql.php:24 setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 +#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 +#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 +#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 +#: setup/postgresql.php:125 setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 +#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 +#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 +#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: setup/oci.php:41 setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup/oci.php:173 setup/oci.php:205 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup/postgresql.php:23 setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:42 +msgid "Set an admin username." +msgstr "" + +#: setup.php:45 +msgid "Set an admin password." +msgstr "" + +#: setup.php:198 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:199 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po new file mode 100644 index 0000000000..f41b43f447 --- /dev/null +++ b/l10n/ml_IN/settings.po @@ -0,0 +1,506 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:35 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:41 js/apps.js:81 +msgid "Disable" +msgstr "" + +#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +msgid "Enable" +msgstr "" + +#: js/apps.js:60 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 +msgid "Error" +msgstr "" + +#: js/apps.js:95 +msgid "Updating...." +msgstr "" + +#: js/apps.js:98 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:101 +msgid "Updated" +msgstr "" + +#: js/personal.js:118 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 +msgid "Groups" +msgstr "" + +#: js/users.js:95 templates/users.php:89 templates/users.php:124 +msgid "Group Admin" +msgstr "" + +#: js/users.js:115 templates/users.php:164 +msgid "Delete" +msgstr "" + +#: js/users.js:269 +msgid "add group" +msgstr "" + +#: js/users.js:428 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:429 js/users.js:435 js/users.js:450 +msgid "Error creating user" +msgstr "" + +#: js/users.js:434 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:37 personal.php:38 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:17 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:20 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:34 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:35 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:46 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:49 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:60 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:65 +#, php-format +msgid "" +"This ownCloud server can't set system locale to %s. This means that there " +"might be problems with certain characters in file names. We strongly suggest" +" to install the required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:77 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:80 +msgid "" +"This ownCloud server has no working internet connection. This means that " +"some of the features like mounting of external storage, notifications about " +"updates or installation of 3rd party apps don´t work. Accessing files from " +"remote and sending of notification emails might also not work. We suggest to" +" enable internet connection for this server if you want to have all features" +" of ownCloud." +msgstr "" + +#: templates/admin.php:94 +msgid "Cron" +msgstr "" + +#: templates/admin.php:103 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:113 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:123 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:130 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:136 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:137 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:144 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:145 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:152 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:153 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:160 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:163 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:170 +msgid "Security" +msgstr "" + +#: templates/admin.php:183 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:184 +msgid "" +"Enforces the clients to connect to ownCloud via an encrypted connection." +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Please connect to this ownCloud instance via HTTPS to enable or disable the " +"SSL enforcement." +msgstr "" + +#: templates/admin.php:197 +msgid "Log" +msgstr "" + +#: templates/admin.php:198 +msgid "Log level" +msgstr "" + +#: templates/admin.php:229 +msgid "More" +msgstr "" + +#: templates/admin.php:230 +msgid "Less" +msgstr "" + +#: templates/admin.php:236 templates/personal.php:116 +msgid "Version" +msgstr "" + +#: templates/admin.php:240 templates/personal.php:119 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:43 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:10 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:21 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:29 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +msgid "Password" +msgstr "" + +#: templates/personal.php:42 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:44 +msgid "Current password" +msgstr "" + +#: templates/personal.php:46 +msgid "New password" +msgstr "" + +#: templates/personal.php:48 +msgid "Change password" +msgstr "" + +#: templates/personal.php:60 templates/users.php:85 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:75 +msgid "Email" +msgstr "" + +#: templates/personal.php:77 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:78 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:87 templates/personal.php:88 +msgid "Language" +msgstr "" + +#: templates/personal.php:100 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:106 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:108 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:48 templates/users.php:142 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:157 +msgid "Other" +msgstr "" + +#: templates/users.php:84 +msgid "Username" +msgstr "" + +#: templates/users.php:91 +msgid "Storage" +msgstr "" + +#: templates/users.php:102 +msgid "change display name" +msgstr "" + +#: templates/users.php:106 +msgid "set new password" +msgstr "" + +#: templates/users.php:137 +msgid "Default" +msgstr "" diff --git a/l10n/ml_IN/user_ldap.po b/l10n/ml_IN/user_ldap.po new file mode 100644 index 0000000000..0488df2f5a --- /dev/null +++ b/l10n/ml_IN/user_ldap.po @@ -0,0 +1,419 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:111 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:112 +msgid "Success" +msgstr "" + +#: js/settings.js:117 +msgid "Error" +msgstr "" + +#: js/settings.js:141 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:146 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:156 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:157 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:9 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:12 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:16 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:32 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:37 +msgid "Host" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:40 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:41 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:42 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:44 +msgid "User DN" +msgstr "" + +#: templates/settings.php:46 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:47 +msgid "Password" +msgstr "" + +#: templates/settings.php:50 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:51 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:55 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:56 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:59 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:60 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:61 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:64 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:65 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:69 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:71 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:71 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:72 +msgid "Port" +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:73 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:74 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:75 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:75 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:76 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:76 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:77 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:78 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:78 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:78 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:79 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:79 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:81 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:83 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:83 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:84 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:84 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:85 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:85 templates/settings.php:88 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:86 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:86 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:87 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:87 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:88 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:89 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:91 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:94 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:94 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:95 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:96 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:96 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:101 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:102 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder in " +"ownCloud. It is also a port of remote URLs, for instance for all *DAV " +"services. With this setting, the default behaviour can be overriden. To " +"achieve a similar behaviour as before ownCloud 5 enter the user display name" +" attribute in the following field. Leave it empty for default behaviour. " +"Changes will have effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:103 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:104 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:105 +msgid "" +"By default, ownCloud autodetects the UUID attribute. The UUID attribute is " +"used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behaviour. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:106 +msgid "UUID Attribute:" +msgstr "" + +#: templates/settings.php:107 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:108 +msgid "" +"ownCloud uses usernames to store and assign (meta) data. In order to " +"precisely identify and recognize users, each LDAP user will have a internal " +"username. This requires a mapping from ownCloud username to LDAP user. The " +"created username is mapped to the UUID of the LDAP user. Additionally the DN" +" is cached as well to reduce LDAP interaction, but it is not used for " +"identification. If the DN changes, the changes will be found by ownCloud. " +"The internal ownCloud name is used all over in ownCloud. Clearing the " +"Mappings will have leftovers everywhere. Clearing the Mappings is not " +"configuration sensitive, it affects all LDAP configurations! Do never clear " +"the mappings in a production environment. Only clear mappings in a testing " +"or experimental stage." +msgstr "" + +#: templates/settings.php:109 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:109 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" + +#: templates/settings.php:111 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:111 +msgid "Help" +msgstr "" diff --git a/l10n/ml_IN/user_webdavauth.po b/l10n/ml_IN/user_webdavauth.po new file mode 100644 index 0000000000..883156e8a5 --- /dev/null +++ b/l10n/ml_IN/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 9bcdfd3937..8708880d54 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Ralat" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Kata laluan" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Larangan akses" msgid "Cloud not found" msgstr "Awan tidak dijumpai" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Perkhidmatan web di bawah kawalan anda" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Ubah kategori" @@ -611,7 +607,7 @@ msgstr "Log masuk" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Fail yang dimuatnaik tidak lengkap" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Tiada fail dimuatnaik" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Direktori sementara hilang" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index bddfe537e6..bd3a182e43 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 970b7e75f9..286ea0e351 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Muat turun" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index ec2dfa4249..97e69d4029 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 4fca82933b..14603d8a59 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Perkhidmatan web di bawah kawalan anda" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index d4b492cc02..7a4c1c6d8e 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index ed5d4b77a0..80b895bb0e 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 4c59ffd121..883a0bee73 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "စကားဝှက်" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "မတွေ့ရှိမိပါ" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,7 +607,7 @@ msgstr "ဝင်ရောက်ရန်" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index bb40b83f31..5601d3910d 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index e4d5993e77..7eaa840df7 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "အက်ဒမင်" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 8dbec6d9c7..9cdecfa8d3 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Feil" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Feil under deling" @@ -282,87 +282,87 @@ msgstr "Passordbeskyttet" msgid "Password" msgstr "Passord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Send" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Del på epost" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan endre" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "opprett" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "oppdater" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "slett" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "del" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-post sendt" @@ -465,7 +465,7 @@ msgstr "Tilgang nektet" msgid "Cloud not found" msgstr "Sky ikke funnet" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web tjenester du kontrollerer" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Rediger kategorier" @@ -611,7 +607,7 @@ msgstr "Logg inn" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Kan ikke flytte %s - En fil med samme navn finnes allerede" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filen du prøvde å laste opp var større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ingen filer ble lastet opp" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Mangler midlertidig mappe" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ugyldig katalog." diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index bf47440476..bf6b93008b 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 436b638a78..84d80ea73c 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s delte mappen %s med deg" msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Last ned" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 3d779883ea..bee4958886 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 21f56e5a18..c5cf04fd9c 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web tjenester du kontrollerer" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index c00cb1b8e8..5993207230 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 2a5b9a8237..4de9f9e24f 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 00c0dcd723..a8062fa9db 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "Het object type is niet gespecificeerd." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fout" @@ -248,7 +248,7 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -284,87 +284,87 @@ msgstr "Wachtwoord beveiligd" msgid "Password" msgstr "Wachtwoord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Sta publieke uploads toe" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "E-mail link naar persoon" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Versturen" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Stel vervaldatum in" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Vervaldatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Deel via e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "creëer" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "bijwerken" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "verwijderen" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "deel" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail verzonden" @@ -467,7 +467,7 @@ msgstr "Toegang verboden" msgid "Cloud not found" msgstr "Cloud niet gevonden" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Webdiensten in eigen beheer" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Wijzig categorieën" @@ -613,7 +609,7 @@ msgstr "Meld je aan" msgid "Alternative Logins" msgstr "Alternatieve inlogs" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" msgid "Could not move %s" msgstr "Kon %s niet verplaatsen" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Kan upload map niet instellen." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Ongeldig Token" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "De upload van het bestand is goedgegaan." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het bestand overschrijdt de MAX_FILE_SIZE instelling dat is opgegeven in het HTML formulier" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ongeldige directory." diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 4ebdfbe8db..4707eda8b0 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index a6294e70a7..6ac6db9109 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s deelt de map %s met u" msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Downloaden" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 417ee106bd..671cc24ddb 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 18171e425e..852f46e490 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Beheerder" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Webdiensten in eigen beheer" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 21ec7c4f26..3efeef5919 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 8938851e6d..dd0ec213f1 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 98bfac971d..9c4ea96e23 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "Objekttypen er ikkje spesifisert." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Feil" @@ -248,7 +248,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Feil ved deling" @@ -284,87 +284,87 @@ msgstr "Passordvern" msgid "Password" msgstr "Passord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Send lenkja over e-post" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Send" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Del over e-post:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Udel" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan endra" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "lag" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "oppdater" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "slett" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "del" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-post sendt" @@ -467,7 +467,7 @@ msgstr "Tilgang forbudt" msgid "Cloud not found" msgstr "Fann ikkje skyen" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Vev tjenester under din kontroll" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Endra kategoriar" @@ -613,7 +609,7 @@ msgstr "Logg inn" msgid "Alternative Logins" msgstr "Alternative innloggingar" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet" msgid "Could not move %s" msgstr "Klarte ikkje flytta %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ugyldig mappe." diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 1bb375dea3..3a7536c324 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index e3d7bd1cad..856d04abdc 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -40,18 +40,18 @@ msgstr "%s delte mappa %s med deg" msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Last ned" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Inga førehandsvising tilgjengeleg for" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 60d7ca60fa..1a948c6751 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 8764230281..f97a47cb61 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administrer" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Vev tjenester under din kontroll" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index fee3ace1a7..24067d7f55 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 7906232c66..2db0219c1a 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index fb6d956410..6de459131d 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Error al partejar" @@ -282,87 +282,87 @@ msgstr "Parat per senhal" msgid "Password" msgstr "Senhal" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Met la data d'expiracion" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data d'expiracion" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Parteja tras corrièl :" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crea" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "met a jorn" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "escafa" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "parteja" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Acces enebit" msgid "Cloud not found" msgstr "Nívol pas trobada" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Services web jos ton contraròtle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edita categorias" @@ -611,7 +607,7 @@ msgstr "Dintrada" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 3ab7dadb48..1e9d596fc1 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 648e45ac3f..553552854d 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 93897df411..5b4113b7e0 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 0e80821a6b..6300d9a449 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Services web jos ton contraròtle" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index e0668bd3f6..1212b256c6 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index bbc7fccc22..12cbc34b1e 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 87a46dd01b..09d665b180 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "Nie określono typu obiektu." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Błąd" @@ -248,7 +248,7 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -284,87 +284,87 @@ msgstr "Zabezpiecz hasłem" msgid "Password" msgstr "Hasło" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Pozwól na publiczne wczytywanie" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Wyślij osobie odnośnik poprzez e-mail" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Wyślij" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Ustaw datę wygaśnięcia" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Współdziel poprzez e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "może edytować" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "utwórz" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "uaktualnij" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "usuń" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "współdziel" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail wysłany" @@ -467,7 +467,7 @@ msgstr "Dostęp zabroniony" msgid "Cloud not found" msgstr "Nie odnaleziono chmury" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Kontrolowane serwisy" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edytuj kategorie" @@ -613,7 +609,7 @@ msgstr "Zaloguj" msgid "Alternative Logins" msgstr "Alternatywne loginy" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" msgid "Could not move %s" msgstr "Nie można było przenieść %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Nie można ustawić katalog wczytywania." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Nieprawidłowy Token" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nie było błędów, plik wysłano poprawnie." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Załadowany plik został wysłany tylko częściowo." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Zła ścieżka." diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index fa243c4f0c..97323bdebb 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 51fd0ff3e1..da7f5f3f70 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s współdzieli folder z tobą %s" msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Pobierz" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index aca2ca239a..74b207f412 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 57736058c2..75cfebcc23 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administrator" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Kontrolowane serwisy" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 64b74c896f..25b08edad4 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index e0f4cee024..172ebb58c7 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 65fd184b7f..0597c95542 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: bjamalaro \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "O tipo de objeto não foi especificado." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Erro" @@ -248,7 +248,7 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -284,87 +284,87 @@ msgstr "Proteger com senha" msgid "Password" msgstr "Senha" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Permitir upload público" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar link por e-mail" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Enviar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Definir data de expiração" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Compartilhar via e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pode editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "controle de acesso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "criar" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "atualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "remover" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "compartilhar" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail enviado" @@ -467,7 +467,7 @@ msgstr "Acesso proibido" msgid "Cloud not found" msgstr "Cloud não encontrado" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "serviços web sob seu controle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorias" @@ -613,7 +609,7 @@ msgstr "Fazer login" msgid "Alternative Logins" msgstr "Logins alternativos" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:10+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +65,14 @@ msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Requisitos em falta." #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "" +msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 7d3361b2e1..8062ecd277 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 8fcaa98324..1fa4c8e34f 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Flávio Veras , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Senha incorreta. Tente novamente." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s compartilhou a pasta %s com você" msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Baixar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index b6502c0a24..c9b0b36791 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index d55efcc9cb..bb2ce25069 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "serviços web sob seu controle" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index f36dd96b18..e49839bd31 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 0ced82a9ab..eeebc366c6 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 0488643d6c..5355d48d20 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Erro" @@ -248,7 +248,7 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -284,87 +284,87 @@ msgstr "Proteger com palavra-passe" msgid "Password" msgstr "Password" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar o link por e-mail" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Enviar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Especificar data de expiração" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Partilhar via email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pode editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "criar" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "apagar" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "partilhar" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail enviado" @@ -467,7 +467,7 @@ msgstr "Acesso interdito" msgid "Cloud not found" msgstr "Cloud nao encontrada" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "serviços web sob o seu controlo" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorias" @@ -613,7 +609,7 @@ msgstr "Entrar" msgid "Alternative Logins" msgstr "Contas de acesso alternativas" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse msgid "Could not move %s" msgstr "Não foi possível move o ficheiro %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O tamanho do ficheiro carregado ultrapassa o valor MAX_FILE_SIZE definido no formulário HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nenhum ficheiro foi submetido" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Está a faltar a pasta temporária" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Directório Inválido" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 4e37dd6eb3..59af12d7ca 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 4d38690dd9..00e7907a17 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s partilhou a pasta %s consigo" msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Transferir" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carregar" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Não há pré-visualização para" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index c6cddd6f0e..ac67a7e802 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 4e2b5d081d..e7563b48db 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "serviços web sob o seu controlo" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 9391d4e97d..f96f055cda 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 3809ce19f4..00b1f1ea4b 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 13b672d7b5..e6687b7b78 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -5,12 +5,13 @@ # Translators: # dimaursu16 , 2013 # ripkid666 , 2013 +# sergiu_sechel , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -227,8 +228,8 @@ msgstr "Tipul obiectului nu a fost specificat" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Eroare" @@ -248,7 +249,7 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -284,87 +285,87 @@ msgstr "Protejare cu parolă" msgid "Password" msgstr "Parolă" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Permiteţi încărcarea publică." -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Expediază legătura prin poșta electronică" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Expediază" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Specifică data expirării" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data expirării" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Distribuie prin email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "poate edita" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control acces" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "creare" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizare" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ștergere" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "partajare" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Mesajul a fost expediat" @@ -467,7 +468,7 @@ msgstr "Acces interzis" msgid "Cloud not found" msgstr "Nu s-a găsit" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +479,6 @@ msgid "" "Cheers!" msgstr "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servicii web controlate de tine" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editează categorii" @@ -613,7 +610,7 @@ msgstr "Autentificare" msgid "Alternative Logins" msgstr "Conectări alternative" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
, 2013 # ripkid666 , 2013 +# sergiu_sechel , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"Last-Translator: sergiu_sechel \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,61 +23,61 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nu se poate de mutat %s - Fișier cu acest nume deja există" +msgstr "%s nu se poate muta - Fișierul cu acest nume există deja " #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" msgstr "Nu s-a putut muta %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." -msgstr "" +msgstr "Imposibil de a seta directorul pentru incărcare." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Jeton Invalid" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nu a fost încărcat nici un fișier" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Lipsește un director temporar" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nu este suficient spațiu disponibil" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Director invalid." @@ -233,7 +234,7 @@ msgstr "{count} fisiere" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s nu a putut fi redenumit" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -331,11 +332,11 @@ msgstr "În curs de scanare" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "catalog" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "cataloage" #: templates/part.list.php:89 msgid "file" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index a8f053485c..9a9473b8b7 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 36d3190be8..a14ccad872 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# sergiu_sechel , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"Last-Translator: sergiu_sechel \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Parola este incorectă. Încercaţi din nou." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s a partajat directorul %s cu tine" msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descarcă" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index cadca65fea..702df644b7 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 4909d62b61..ea82af5005 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servicii web controlate de tine" #: files.php:210 msgid "ZIP download is turned off." @@ -182,12 +182,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." #: setup.php:199 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Vă rugăm să verificați ghiduri de instalare." #: template.php:113 msgid "seconds ago" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 612326efce..89c8a2fb1d 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# sergiu_sechel , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"Last-Translator: sergiu_sechel \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Imposibil de încărcat lista din App Store" +msgstr "Imposibil de actualizat lista din App Store." #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 @@ -28,11 +29,11 @@ msgstr "Eroare la autentificare" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Numele afişat a fost schimbat." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "Imposibil de schimbat numele afişat." #: ajax/creategroup.php:10 msgid "Group already exists" @@ -86,11 +87,11 @@ msgstr "Nu s-a putut elimina utilizatorul din grupul %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Aplicaţia nu s-a putut actualiza." #: js/apps.js:35 msgid "Update to {appversion}" -msgstr "" +msgstr "Actualizat la {versiuneaaplicaţiei}" #: js/apps.js:41 js/apps.js:81 msgid "Disable" @@ -102,7 +103,7 @@ msgstr "Activare" #: js/apps.js:60 msgid "Please wait...." -msgstr "" +msgstr "Aşteptaţi vă rog...." #: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 msgid "Error" @@ -110,15 +111,15 @@ msgstr "Eroare" #: js/apps.js:95 msgid "Updating...." -msgstr "" +msgstr "Actualizare în curs...." #: js/apps.js:98 msgid "Error while updating app" -msgstr "" +msgstr "Eroare în timpul actualizării aplicaţiei" #: js/apps.js:101 msgid "Updated" -msgstr "" +msgstr "Actualizat" #: js/personal.js:118 msgid "Saving..." @@ -134,7 +135,7 @@ msgstr "Anulează ultima acțiune" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Imposibil de eliminat utilizatorul" #: js/users.js:92 templates/users.php:26 templates/users.php:87 #: templates/users.php:112 @@ -151,19 +152,19 @@ msgstr "Șterge" #: js/users.js:269 msgid "add group" -msgstr "" +msgstr "adăugaţi grupul" #: js/users.js:428 msgid "A valid username must be provided" -msgstr "" +msgstr "Trebuie să furnizaţi un nume de utilizator valid" #: js/users.js:429 js/users.js:435 js/users.js:450 msgid "Error creating user" -msgstr "" +msgstr "Eroare la crearea utilizatorului" #: js/users.js:434 msgid "A valid password must be provided" -msgstr "" +msgstr "Trebuie să furnizaţi o parolă validă" #: personal.php:37 personal.php:38 msgid "__language_name__" @@ -184,32 +185,32 @@ msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile pri #: templates/admin.php:31 msgid "Setup Warning" -msgstr "" +msgstr "Atenţie la implementare" #: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." #: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Vă rugăm să verificați ghiduri de instalare." #: templates/admin.php:46 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Modulul \"Fileinfo\" lipsește" #: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type." #: templates/admin.php:60 msgid "Locale not working" -msgstr "" +msgstr "Localizarea nu funcționează" #: templates/admin.php:65 #, php-format @@ -217,11 +218,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Acest server ownCloud nu poate seta sistemul de localizare pentru% s. Acest lucru înseamnă că ar putea exista probleme cu anumite caractere în numele de fișiere. Vă recomandăm să instalați pachetele necesare pe sistemul dumneavoastră pentru a sprijini% s." #: templates/admin.php:77 msgid "Internet connection not working" -msgstr "" +msgstr "Conexiunea la internet nu funcționează" #: templates/admin.php:80 msgid "" @@ -231,7 +232,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "Acest server ownCloud nu are nici o conexiune la internet activă. Acest lucru înseamnă că anumite caracteristici, cum ar fi montarea mediilor de stocare externe, notificări despre actualizări sau instalarea de aplicatii tereţe nu funcționează. Accesarea fișierelor de la distanță și trimiterea de e-mailuri de notificare s-ar putea, de asemenea, să nu funcționeze. Vă sugerăm să permiteţi conectarea la Internet pentru acest server, dacă doriți să aveți toate caracteristicile de oferite de ownCloud." #: templates/admin.php:94 msgid "Cron" @@ -291,7 +292,7 @@ msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același gr #: templates/admin.php:170 msgid "Security" -msgstr "" +msgstr "Securitate" #: templates/admin.php:183 msgid "Enforce HTTPS" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index b3d9bbb73b..0f042a5a7c 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 71329669d0..7f5a671579 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -230,8 +230,8 @@ msgstr "Тип объекта не указан" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Ошибка" @@ -251,7 +251,7 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -287,87 +287,87 @@ msgstr "Защитить паролем" msgid "Password" msgstr "Пароль" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Почтовая ссылка на персону" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Отправить" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Установить срок доступа" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Дата окончания" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Поделится через электронную почту:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "может редактировать" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "контроль доступа" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "создать" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "обновить" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "удалить" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "открыть доступ" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Письмо отправлено" @@ -470,7 +470,7 @@ msgstr "Доступ запрещён" msgid "Cloud not found" msgstr "Облако не найдено" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -481,10 +481,6 @@ msgid "" "Cheers!" msgstr "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "веб-сервисы под вашим управлением" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Редактировать категрии" @@ -616,7 +612,7 @@ msgstr "Войти" msgid "Alternative Logins" msgstr "Альтернативные имена пользователя" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Невозможно переместить %s - файл с таким msgid "Could not move %s" msgstr "Невозможно переместить %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер установленный upload_max_filesize в php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Загружаемый файл превосходит значение переменной MAX_FILE_SIZE, указанной в форме HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Файл загружен частично" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Отсутствует временная папка" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Неправильный каталог." diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 6d3950b621..5141dca8cb 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 625e240fe3..2bb11139e0 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s открыл доступ к папке %s для Вас" msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Скачать" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Предпросмотр недоступен для" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 9393a081ef..13079f15cd 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index ab21862931..e9d86ffbb8 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "веб-сервисы под вашим управлением" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index f89a5dac1b..2f8fccfe41 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: lord93 \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 9647486ac9..cfef08b905 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index d0453b0a9a..d5ce5665ce 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "දෝෂයක්" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "මුර පදයකින් ආරක්ශාකරන්න" msgid "Password" msgstr "මුර පදය" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "කල් ඉකුත් විමේ දිනය දමන්න" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "කල් ඉකුත් විමේ දිනය" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "විද්‍යුත් තැපෑල මඟින් බෙදාගන්න: " -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "ප්‍රවේශ පාලනය" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "සදන්න" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "මකන්න" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "ඇතුල් වීම තහනම්" msgid "Cloud not found" msgstr "සොයා ගත නොහැක" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ප්‍රභේදයන් සංස්කරණය" @@ -611,7 +607,7 @@ msgstr "ප්‍රවේශවන්න" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ගොනුවක් උඩුගත නොවුණි" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් අතුරුදහන්" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 9a29be25bb..3387ec5460 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index cb5315ae37..8c60617d18 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත් msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "බාන්න" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 94157f9e48..dd0ad4c62d 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index cd52a1d43d..8a33e180e2 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "පරිපාලක" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 7c96c853ea..3d5dc19cfb 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index a7c9e4121b..1d0cd2b0d8 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 99ac86641d..0afee3edf4 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Nešpecifikovaný typ objektu." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Chyba" @@ -247,7 +247,7 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -283,87 +283,87 @@ msgstr "Chrániť heslom" msgid "Password" msgstr "Heslo" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Odoslať odkaz emailom" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Odoslať" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Nastaviť dátum expirácie" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Dátum expirácie" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Zdieľať cez e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "prístupové práva" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "vytvoriť" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aktualizovať" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "vymazať" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "zdieľať" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email odoslaný" @@ -466,7 +466,7 @@ msgstr "Prístup odmietnutý" msgid "Cloud not found" msgstr "Nenájdené" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "webové služby pod Vašou kontrolou" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Upraviť kategórie" @@ -612,7 +608,7 @@ msgstr "Prihlásiť sa" msgid "Alternative Logins" msgstr "Alternatívne prihlasovanie" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Nie je možné presunúť %s - súbor s týmto menom už existuje" msgid "Could not move %s" msgstr "Nie je možné presunúť %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Neplatný priečinok" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index f74c1222c1..f91c75ec2c 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index f03437d7b5..fa6c5f0460 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s zdieľa s vami priečinok %s" msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odoslať" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 927e189150..1847f5e5f3 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index e4a4f8d82f..ec8a1ac161 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Administrátor" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "webové služby pod Vašou kontrolou" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index a5564b8787..59255ac674 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 31f55ab48e..1f200892de 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index cb93b7bd42..725d87a526 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: barbarak \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Napaka" @@ -248,7 +248,7 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -284,87 +284,87 @@ msgstr "Zaščiti z geslom" msgid "Password" msgstr "Geslo" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Dovoli javne prenose na strežnik" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Posreduj povezavo po elektronski pošti" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Pošlji" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Nastavi datum preteka" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Datum preteka" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Souporaba preko elektronske pošte:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "V souporabi v {item} z {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Prekliči souporabo" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "ustvari" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "posodobi" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "izbriši" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "določi souporabo" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Elektronska pošta je poslana" @@ -467,7 +467,7 @@ msgstr "Dostop je prepovedan" msgid "Cloud not found" msgstr "Oblaka ni mogoče najti" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "spletne storitve pod vašim nadzorom" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Uredi kategorije" @@ -613,7 +609,7 @@ msgstr "Prijava" msgid "Alternative Logins" msgstr "Druge prijavne možnosti" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Ni mogoče premakniti %s - datoteka s tem imenom že obstaja" msgid "Could not move %s" msgstr "Ni mogoče premakniti %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Mapo, v katero boste prenašali dokumente, ni mogoče določiti" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Neveljaven žeton" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Neveljavna mapa." diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index bd859f79fc..bf903d7e4c 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 7ec9eb98b8..71808d2191 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "Oseba %s je določila mapo %s za souporabo" msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Prejmi" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Predogled ni na voljo za" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 5dba62b27b..c4ce351b6c 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 1f82014f69..3e4798d234 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Skrbništvo" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "spletne storitve pod vašim nadzorom" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index f5a3257c7a..6f8b9d5004 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index f172c51d81..578ac96e9e 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 9dd4c083b5..564ddd0698 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Nuk është specifikuar tipi i objektit." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Veprim i gabuar" @@ -247,7 +247,7 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -283,87 +283,87 @@ msgstr "Mbro me kod" msgid "Password" msgstr "Kodi" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Dërgo email me lidhjen" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Dërgo" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Cakto datën e përfundimit" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data e përfundimit" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Nda me email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "krijo" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "azhurno" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "elimino" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "nda" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email-i u dërgua" @@ -466,7 +466,7 @@ msgstr "Ndalohet hyrja" msgid "Cloud not found" msgstr "Cloud-i nuk u gjet" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "shërbime web nën kontrollin tënd" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Ndrysho kategoritë" @@ -612,7 +608,7 @@ msgstr "Hyrje" msgid "Alternative Logins" msgstr "Hyrje alternative" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër" msgid "Could not move %s" msgstr "%s nuk u spostua" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nuk pati veprime të gabuara, skedari u ngarkua me sukses" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Skedari i ngarkuar tejkalon udhëzimin upload_max_filesize tek php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Skedari i ngarkuar tejkalon udhëzimin MAX_FILE_SIZE të specifikuar në formularin HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Skedari i ngarkuar u ngarkua vetëm pjesërisht" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nuk u ngarkua asnjë skedar" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Një dosje e përkohshme nuk u gjet" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Ruajtja në disk dështoi" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nuk ka mbetur hapësirë memorizimi e mjaftueshme" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Dosje e pavlefshme." diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 75f4f40a97..6b4c5f88c8 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index cd10e24824..e7f2156ed0 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s ndau me ju dosjen %s" msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Shkarko" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Shikimi paraprak nuk është i mundur për" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 019dbc6c4e..9b23b3e32b 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 08b980ef40..b41dc2aae5 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "shërbime web nën kontrollin tënd" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 68a9f1a0bb..13cd1fbb61 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 63ae8ea0c1..6c1f5e70d8 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 6f4c2ff8f9..08b35dfb59 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Врста објекта није подешена." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -282,87 +282,87 @@ msgstr "Заштићено лозинком" msgid "Password" msgstr "Лозинка" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Пошаљи" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Постави датум истека" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Датум истека" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Подели поштом:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "може да мења" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "права приступа" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "направи" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ажурирај" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "обриши" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "подели" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Порука је послата" @@ -465,7 +465,7 @@ msgstr "Забрањен приступ" msgid "Cloud not found" msgstr "Облак није нађен" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "веб сервиси под контролом" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Измени категорије" @@ -611,7 +607,7 @@ msgstr "Пријава" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Не могу да преместим %s – датотека с ови msgid "Could not move %s" msgstr "Не могу да преместим %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "неисправна фасцикла." diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index d5b9824005..b22931737c 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 187091dc0f..afa977d5e5 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Преузми" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 6f72e91615..8d86eab078 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index fc638ea0a8..fa0a5b178e 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Администратор" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "веб сервиси под контролом" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index c769835739..a0c64b7553 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index cc90019174..79d6ea4e9a 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 3b6924c9d3..fb65b5ff85 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Lozinka" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "Oblak nije nađen" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index d51263ad3d..3cdf2d95e3 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index b194043d3d..7d66587912 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 19caa509c7..93ab69dee7 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 8431553968..e40e5df64f 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 0d7e05d74d..f826a78b5e 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index e0ec098b2b..3a4b82f783 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -229,8 +229,8 @@ msgstr "Objekttypen är inte specificerad." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fel" @@ -250,7 +250,7 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fel vid delning" @@ -286,87 +286,87 @@ msgstr "Lösenordsskydda" msgid "Password" msgstr "Lösenord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Tillåt publik uppladdning" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "E-posta länk till person" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Skicka" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Sätt utgångsdatum" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Utgångsdatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Dela via e-post:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan redigera" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "skapa" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "uppdatera" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "radera" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "dela" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-post skickat" @@ -469,7 +469,7 @@ msgstr "Åtkomst förbjuden" msgid "Cloud not found" msgstr "Hittade inget moln" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -480,10 +480,6 @@ msgid "" "Cheers!" msgstr "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "webbtjänster under din kontroll" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editera kategorier" @@ -615,7 +611,7 @@ msgstr "Logga in" msgid "Alternative Logins" msgstr "Alternativa inloggningar" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -30,54 +30,54 @@ msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" msgid "Could not move %s" msgstr "Kan inte flytta %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Kan inte sätta mapp för uppladdning." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Ogiltig token" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överskrider MAX_FILE_SIZE direktivet som har angetts i HTML formuläret" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Felaktig mapp." diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 79ead110e2..2f596b6480 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index d70c00bf94..5327c27b0f 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s delade mappen %s med dig" msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 600a0d96b2..51797b34c4 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index bdeb2188c3..c6e759105a 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "webbtjänster under din kontroll" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index fa154a3b61..9eb5d232b6 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 838ca5b70c..5ccfee0a8d 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 74d9a9bab4..834f706c36 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "பொருள் வகை குறிப்பிடப்படவ #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "வழு" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -282,87 +282,87 @@ msgstr "கடவுச்சொல்லை பாதுகாத்தல்" msgid "Password" msgstr "கடவுச்சொல்" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "காலாவதி தேதியை குறிப்பிடுக" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "காலவதியாகும் திகதி" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "மின்னஞ்சலினூடான பகிர்வு: " -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "நீக்குக" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "அணுக தடை" msgid "Cloud not found" msgstr "Cloud காணப்படவில்லை" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "வகைகளை தொகுக்க" @@ -611,7 +607,7 @@ msgstr "புகுபதிகை" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 929d3d3b4f..b8fe712e50 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 071a3107f3..5aa24a9e2e 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s கோப்புறையானது %s உடன் பகிர msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 3bcff1d04a..579186f3ad 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 196a015a36..aa729894da 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "நிர்வாகம்" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index a0caf8ebf3..ea94ffb4ff 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 14b0e2b0f7..f66325453e 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 1048ece86e..54c2a7f7bc 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "పొరపాటు" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "సంకేతపదం" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "పంపించు" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "కాలం చెల్లు తేదీ" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "తొలగించు" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index fbd6a1a4e0..9961050a11 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index f2592ebfed..2aee55f17f 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 6a93cfc587..c1e770700c 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index c75cc67f35..ec2944d3ae 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index eddbf351c6..2033466508 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5b7753ae03..9f5b476c52 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: LANGUAGE \n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7c2e959cb1..0a50c047f0 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 113588c54c..b2b31e436c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index d2160e952e..a0e346b5df 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 85921f556a..2aa26d1cdc 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index e783052228..b4761de32e 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 6f9cb0e882..0cc2827ab2 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index c044d3dd08..a83ad13f90 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 1dfa258a2a..d57c3f2759 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index b28542fa64..71d1e39fc1 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index d2a6768c92..5bc2b6fb20 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "ชนิดของวัตถุยังไม่ได้รับ #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "ข้อผิดพลาด" @@ -246,7 +246,7 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -282,87 +282,87 @@ msgstr "ใส่รหัสผ่านไว้" msgid "Password" msgstr "รหัสผ่าน" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "ส่งลิงก์ให้ทางอีเมล" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "ส่ง" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "กำหนดวันที่หมดอายุ" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "วันที่หมดอายุ" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "แชร์ผ่านทางอีเมล" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "สร้าง" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "อัพเดท" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ลบ" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "แชร์" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" @@ -465,7 +465,7 @@ msgstr "การเข้าถึงถูกหวงห้าม" msgid "Cloud not found" msgstr "ไม่พบ Cloud" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "แก้ไขหมวดหมู่" @@ -611,7 +607,7 @@ msgstr "เข้าสู่ระบบ" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ท msgid "Could not move %s" msgstr "ไม่สามารถย้าย %s ได้" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในรูปแบบของ HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index ac88dabf36..1a3bc0fd88 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index deecf03ec8..ddeac9187c 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับ msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 4310b4de2a..d1a70558e2 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index cb180e5463..65d010ecd0 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "ผู้ดูแล" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1334006e72..e519d00957 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 4b200fa97f..c09220ca1b 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 6fe007d32f..b8964bf1ee 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Nesne türü belirtilmemiş." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Hata" @@ -247,7 +247,7 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -283,87 +283,87 @@ msgstr "Şifre korunması" msgid "Password" msgstr "Parola" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Kişiye e-posta linki" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Gönder" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Son kullanma tarihini ayarla" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Son kullanım tarihi" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Eposta ile paylaş" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr " {item} içinde {user} ile paylaşılanlarlar" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "oluştur" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "güncelle" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "sil" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "paylaş" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Paralo korumalı" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Eposta gönderildi" @@ -466,7 +466,7 @@ msgstr "Erişim yasaklı" msgid "Cloud not found" msgstr "Bulut bulunamadı" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Bilgileriniz güvenli ve şifreli" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorileri düzenle" @@ -612,7 +608,7 @@ msgstr "Giriş yap" msgid "Alternative Logins" msgstr "Alternatif Girişler" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "%s taşınamadı. Bu isimde dosya zaten var." msgid "Could not move %s" msgstr "%s taşınamadı" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Dosya başarıyla yüklendi, hata oluşmadı" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenecek dosyanın boyutu HTML formunda belirtilen MAX_FILE_SIZE limitini aşıyor" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Geçersiz dizin." diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 8c146fbd9a..089cf976a7 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index d95083776d..a6cb8de3aa 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s sizinle paylaşılan %s klasör" msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "İndir" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Yükle" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 2d60a3b671..71d9c55f6d 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index eabf5f4b46..3a1c764199 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Yönetici" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Bilgileriniz güvenli ve şifreli" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 3f82092aa3..4598643c03 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 1398dd6964..7f1ad87eff 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 61c3e4a6c1..8789cf6a51 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "خاتالىق" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "ئىم" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "يوللا" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "%s يۆتكىيەلمەيدۇ" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 45a7c9909e..7e9b2173e4 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index c44c4963a7..922527f9ff 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -40,18 +40,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 8a7776eb12..0b28147bb1 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 3b1c3ce064..6ae4b21f7e 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index c8a31a0679..8523965533 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 14e85892bd..fee5e99e25 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index a8a433e477..6d52519a3d 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Не визначено тип об'єкту." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Помилка" @@ -246,7 +246,7 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -282,87 +282,87 @@ msgstr "Захистити паролем" msgid "Password" msgstr "Пароль" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Ел. пошта належить Пану" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Надіслати" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Встановити термін дії" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Термін дії" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Опублікувати через Ел. пошту:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "може редагувати" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "контроль доступу" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "створити" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "оновити" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "видалити" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "опублікувати" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Ел. пошта надіслана" @@ -465,7 +465,7 @@ msgstr "Доступ заборонено" msgid "Cloud not found" msgstr "Cloud не знайдено" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "підконтрольні Вам веб-сервіси" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Редагувати категорії" @@ -611,7 +607,7 @@ msgstr "Вхід" msgid "Alternative Logins" msgstr "Альтернативні Логіни" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Не вдалося перемістити %s - Файл з таким msgid "Could not move %s" msgstr "Не вдалося перемістити %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Невірний каталог." diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 6ec43b732b..89d26ea21c 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 11f2da15af..ff29b06932 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s опублікував каталог %s для Вас" msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Завантажити" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 64d464a3d3..3fec5f21cd 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index e73905f4cc..2353c969af 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Адмін" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "підконтрольні Вам веб-сервіси" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 3b2dc3f322..00ddba48a6 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 7fca35f7f2..67b92d01e5 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index ca2b3c2322..d170a2d7b1 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "ایرر" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -282,87 +282,87 @@ msgstr "پاسورڈ سے محفوظ کریں" msgid "Password" msgstr "پاسورڈ" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "تاریخ معیاد سیٹ کریں" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "تاریخ معیاد" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ختم کریں" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "شئیر کریں" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "پہنچ کی اجازت نہیں" msgid "Cloud not found" msgstr "نہیں مل سکا" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "آپ کے اختیار میں ویب سروسیز" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "زمرہ جات کی تدوین کریں" @@ -611,7 +607,7 @@ msgstr "لاگ ان" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 3ca0ae9535..9d85b27484 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index b2dcddae24..4f81db33c4 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "ایڈمن" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "آپ کے اختیار میں ویب سروسیز" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 6fbd66db44..4f3be0f604 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index c47c5eb38b..27241307c5 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 0cd21a7866..511a2086b1 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Loại đối tượng không được chỉ định." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Lỗi" @@ -247,7 +247,7 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -283,87 +283,87 @@ msgstr "Mật khẩu bảo vệ" msgid "Password" msgstr "Mật khẩu" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Liên kết email tới cá nhân" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Gởi" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Đặt ngày kết thúc" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Ngày kết thúc" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Chia sẻ thông qua email" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "tạo" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "cập nhật" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "xóa" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "chia sẻ" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email đã được gửi" @@ -466,7 +466,7 @@ msgstr "Truy cập bị cấm" msgid "Cloud not found" msgstr "Không tìm thấy Clound" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "dịch vụ web dưới sự kiểm soát của bạn" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Sửa chuyên mục" @@ -612,7 +608,7 @@ msgstr "Đăng nhập" msgid "Alternative Logins" msgstr "Đăng nhập khác" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Không thể di chuyển %s - Đã có tên tập tin này trên hệ th msgid "Could not move %s" msgstr "Không thể di chuyển %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Các tập tin được tải lên chỉ tải lên được một phần" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Chưa có file nào được tải lên" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index efc55d1228..101c82684a 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 4fcc10717e..26f8ad74c7 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s đã chia sẻ thư mục %s với bạn" msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Tải về" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "Không có xem trước cho" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index d3d2d1c4de..68ad24209f 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 44174a48f0..86335d5284 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Quản trị" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "dịch vụ web dưới sự kiểm soát của bạn" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 0344004549..26534293e6 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index d79d6e4d0d..2d72c5ee9d 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 11d8aaccec..ce3ce4e223 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "出错" @@ -248,7 +248,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "分享出错" @@ -284,87 +284,87 @@ msgstr "密码保护" msgid "Password" msgstr "密码" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "面向个人的电子邮件链接" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "发送" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "设置失效日期" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "失效日期" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "通过电子邮件分享:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "查无此人" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "不允许重复分享" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "已经与 {user} 在 {item} 中分享" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "取消分享" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "可编辑" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "访问控制" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "创建" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "删除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "分享" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "密码保护" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "取消设置失效日期出错" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "设置失效日期出错" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "发送中……" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "电子邮件已发送" @@ -467,7 +467,7 @@ msgstr "禁止访问" msgid "Cloud not found" msgstr "云 没有被找到" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "您控制的网络服务" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "编辑分类" @@ -613,7 +609,7 @@ msgstr "登陆" msgid "Alternative Logins" msgstr "备选登录" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "没有上传文件。未知错误" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件超过了 HTML 表格中指定的 MAX_FILE_SIZE 选项" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "文件部分上传" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "没有上传文件" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "缺失临时文件夹" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "写磁盘失败" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index eb57710602..14b99c1b69 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index e0c82ccfdb..c5ad60737e 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s 与您分享了文件夹 %s" msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下载" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上传" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "没有预览可用于" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 6d62c2ec7d..b8868ffd12 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index f3f7e9e02d..c06e0c8b0f 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "管理员" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "您控制的网络服务" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 1075c2ceca..ee4d4827c4 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index b901562be8..fdea7abff7 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 600c110895..b18431a673 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: m13253 \n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "错误" @@ -248,7 +248,7 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "共享时出错" @@ -284,87 +284,87 @@ msgstr "密码保护" msgid "Password" msgstr "密码" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "允许公开上传" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "发送链接到个人" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "发送" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "设置过期日期" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "过期日期" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "通过Email共享" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "未找到此人" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "在 {item} 与 {user} 共享。" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "取消共享" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "可以修改" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "访问控制" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "创建" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "删除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "共享" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "邮件已发送" @@ -467,7 +467,7 @@ msgstr "访问禁止" msgid "Cloud not found" msgstr "未找到云" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "您好,\n\n%s 向您分享了 %s。\n查看: %s" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "您控制的web服务" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "编辑分类" @@ -613,7 +609,7 @@ msgstr "登录" msgid "Alternative Logins" msgstr "其他登录方式" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -30,54 +30,54 @@ msgstr "无法移动 %s - 同名文件已存在" msgid "Could not move %s" msgstr "无法移动 %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "无法设置上传文件夹。" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "无效密匙" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功,没有错误发生" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "已上传文件只上传了部分(不完整)" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "没有文件被上传" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "无效文件夹。" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 1d0b157fb9..31d527a7bb 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 1969675a0e..931c7712c4 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "%s与您共享了%s文件夹" msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下载" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上传" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "没有预览" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index f5ff36f185..ed66d1b00e 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 87f97f1d9d..c2210aa7c8 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "管理" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "您控制的web服务" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index bd4e9b0025..51f4ca57b8 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: m13253 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index c7a202b38e..734cbf0a39 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 8d2f53e119..ae3b18cda6 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "錯誤" @@ -246,7 +246,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -282,87 +282,87 @@ msgstr "密碼保護" msgid "Password" msgstr "密碼" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "傳送" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "設定分享期限" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "分享期限" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "以電郵分享" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "找不到" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "取消分享" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "新增" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "刪除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "分享" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "郵件已傳" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "未找到Cloud" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,7 +607,7 @@ msgstr "登入" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 8915ed5998..79c7447614 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 29cc944909..cb81102bab 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下載" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 11e1c0a3a6..e5572ac95e 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index b214357aa7..ca9f0d990d 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index c576c2b799..95da66d92d 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 5392bcbf5e..be0f6347fc 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index f2320794fc..fb1e9ca6bb 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "未指定物件類型。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "錯誤" @@ -248,7 +248,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -284,87 +284,87 @@ msgstr "密碼保護" msgid "Password" msgstr "密碼" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "將連結 email 給別人" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "寄出" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "設置到期日" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "到期日" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "透過電子郵件分享:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "取消共享" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "可編輯" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "存取控制" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "建立" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "刪除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "分享" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "解除過期日設定失敗" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "錯誤的到期日設定" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "正在傳送..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email 已寄出" @@ -467,7 +467,7 @@ msgstr "存取被拒" msgid "Cloud not found" msgstr "未發現雲端" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "由您控制的網路服務" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "編輯分類" @@ -613,7 +609,7 @@ msgstr "登入" msgid "Alternative Logins" msgstr "替代登入方法" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "無法移動 %s - 同名的檔案已經存在" msgid "Could not move %s" msgstr "無法移動 %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳。未知的錯誤。" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "無錯誤,檔案上傳成功" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "無效的資料夾。" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 0f97c65369..f87ebdb7c8 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 810cf32cd3..f98e961b83 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -40,18 +40,18 @@ msgstr "%s 和您分享了資料夾 %s " msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下載" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "無法預覽" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 42452cc260..d7ae456244 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 69e868ec9b..649408e244 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "管理" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "由您控制的網路服務" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 1339990cb7..8b5e1cce59 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 78ac885617..8e7e29ac1a 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index 38e91288fb..de32778026 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -4,5 +4,6 @@ "Settings" => "Instellings", "Users" => "Gebruikers", "Apps" => "Toepassings", -"Admin" => "Admin" +"Admin" => "Admin", +"web services under your control" => "webdienste onder jou beheer" ); diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 35a86d0b9d..107b27a1fc 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -5,6 +5,7 @@ "Users" => "المستخدمين", "Apps" => "التطبيقات", "Admin" => "المدير", +"web services under your control" => "خدمات الشبكة تحت سيطرتك", "ZIP download is turned off." => "تحميل ملفات ZIP متوقف", "Files need to be downloaded one by one." => "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر", "Back to Files" => "العودة الى الملفات", diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 4ca307e3c1..e23112c830 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -5,6 +5,7 @@ "Users" => "Потребители", "Apps" => "Приложения", "Admin" => "Админ", +"web services under your control" => "уеб услуги под Ваш контрол", "ZIP download is turned off." => "Изтеглянето като ZIP е изключено.", "Files need to be downloaded one by one." => "Файловете трябва да се изтеглят един по един.", "Back to Files" => "Назад към файловете", diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index f7c8f57466..ab1d9b94d0 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -5,6 +5,7 @@ "Users" => "ব্যবহারকারী", "Apps" => "অ্যাপ", "Admin" => "প্রশাসন", +"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", "ZIP download is turned off." => "ZIP ডাউনলোড বন্ধ করা আছে।", "Files need to be downloaded one by one." => "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।", "Back to Files" => "ফাইলে ফিরে চল", diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 0dd7c86b26..93f7fa5f7b 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -5,6 +5,7 @@ "Users" => "Usuaris", "Apps" => "Aplicacions", "Admin" => "Administració", +"web services under your control" => "controleu els vostres serveis web", "ZIP download is turned off." => "La baixada en ZIP està desactivada.", "Files need to be downloaded one by one." => "Els fitxers s'han de baixar d'un en un.", "Back to Files" => "Torna a Fitxers", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 7e5275f4b6..917f383bb8 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -5,6 +5,7 @@ "Users" => "Uživatelé", "Apps" => "Aplikace", "Admin" => "Administrace", +"web services under your control" => "služby webu pod Vaší kontrolou", "ZIP download is turned off." => "Stahování ZIPu je vypnuto.", "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 37d49a77bd..27140ba6db 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -5,6 +5,7 @@ "Users" => "Defnyddwyr", "Apps" => "Pecynnau", "Admin" => "Gweinyddu", +"web services under your control" => "gwasanaethau gwe a reolir gennych", "ZIP download is turned off." => "Mae llwytho ZIP wedi ei ddiffodd.", "Files need to be downloaded one by one." => "Mae angen llwytho ffeiliau i lawr fesul un.", "Back to Files" => "Nôl i Ffeiliau", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index e5df63eef9..5f11453bcd 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -5,6 +5,7 @@ "Users" => "Brugere", "Apps" => "Apps", "Admin" => "Admin", +"web services under your control" => "Webtjenester under din kontrol", "ZIP download is turned off." => "ZIP-download er slået fra.", "Files need to be downloaded one by one." => "Filer skal downloades en for en.", "Back to Files" => "Tilbage til Filer", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index bd7c407024..4ef02402b9 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -5,6 +5,7 @@ "Users" => "Benutzer", "Apps" => "Apps", "Admin" => "Administration", +"web services under your control" => "Web-Services unter Deiner Kontrolle", "ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 651c63fb77..823d423abc 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -5,6 +5,7 @@ "Users" => "Benutzer", "Apps" => "Apps", "Admin" => "Administrator", +"web services under your control" => "Web-Services unter Ihrer Kontrolle", "ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 09dac78edf..3e876aefdf 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -5,6 +5,7 @@ "Users" => "Χρήστες", "Apps" => "Εφαρμογές", "Admin" => "Διαχειριστής", +"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", "ZIP download is turned off." => "Η λήψη ZIP απενεργοποιήθηκε.", "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", diff --git a/lib/l10n/en@pirate.php b/lib/l10n/en@pirate.php new file mode 100644 index 0000000000..02ff0331e0 --- /dev/null +++ b/lib/l10n/en@pirate.php @@ -0,0 +1,3 @@ + "web services under your control" +); diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index b24748b0db..fd45f30c69 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -5,6 +5,7 @@ "Users" => "Uzantoj", "Apps" => "Aplikaĵoj", "Admin" => "Administranto", +"web services under your control" => "TTT-servoj regataj de vi", "ZIP download is turned off." => "ZIP-elŝuto estas malkapabligita.", "Files need to be downloaded one by one." => "Dosieroj devas elŝutiĝi unuope.", "Back to Files" => "Reen al la dosieroj", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 83bc7b1ed8..1f243a224e 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -5,6 +5,7 @@ "Users" => "Usuarios", "Apps" => "Aplicaciones", "Admin" => "Administración", +"web services under your control" => "Servicios web bajo su control", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", "Back to Files" => "Volver a Archivos", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index 121caf89be..e66771f7e7 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -5,6 +5,7 @@ "Users" => "Usuarios", "Apps" => "Aplicaciones", "Admin" => "Administración", +"web services under your control" => "servicios web que controlás", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados de a uno.", "Back to Files" => "Volver a archivos", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 3db0cda0c7..4da2c36d6a 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -5,6 +5,7 @@ "Users" => "Kasutajad", "Apps" => "Rakendused", "Admin" => "Admin", +"web services under your control" => "veebitenused sinu kontrolli all", "ZIP download is turned off." => "ZIP-ina allalaadimine on välja lülitatud.", "Files need to be downloaded one by one." => "Failid tuleb alla laadida ükshaaval.", "Back to Files" => "Tagasi failide juurde", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index cfb09681ae..028ad0a631 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -5,6 +5,7 @@ "Users" => "Erabiltzaileak", "Apps" => "Aplikazioak", "Admin" => "Admin", +"web services under your control" => "web zerbitzuak zure kontrolpean", "ZIP download is turned off." => "ZIP deskarga ez dago gaituta.", "Files need to be downloaded one by one." => "Fitxategiak banan-banan deskargatu behar dira.", "Back to Files" => "Itzuli fitxategietara", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index b0d423421d..11dfefadea 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -5,6 +5,7 @@ "Users" => "کاربران", "Apps" => " برنامه ها", "Admin" => "مدیر", +"web services under your control" => "سرویس های تحت وب در کنترل شما", "ZIP download is turned off." => "دانلود به صورت فشرده غیر فعال است", "Files need to be downloaded one by one." => "فایل ها باید به صورت یکی یکی دانلود شوند", "Back to Files" => "بازگشت به فایل ها", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 8726951f83..75576c3034 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -5,6 +5,7 @@ "Users" => "Käyttäjät", "Apps" => "Sovellukset", "Admin" => "Ylläpitäjä", +"web services under your control" => "verkkopalvelut hallinnassasi", "ZIP download is turned off." => "ZIP-lataus on poistettu käytöstä.", "Files need to be downloaded one by one." => "Tiedostot on ladattava yksittäin.", "Back to Files" => "Takaisin tiedostoihin", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 724c69420b..9f30b60269 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -5,6 +5,7 @@ "Users" => "Utilisateurs", "Apps" => "Applications", "Admin" => "Administration", +"web services under your control" => "services web sous votre contrôle", "ZIP download is turned off." => "Téléchargement ZIP désactivé.", "Files need to be downloaded one by one." => "Les fichiers nécessitent d'être téléchargés un par un.", "Back to Files" => "Retour aux Fichiers", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index f0d01e4a7d..351f18c715 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -5,6 +5,7 @@ "Users" => "Usuarios", "Apps" => "Aplicativos", "Admin" => "Administración", +"web services under your control" => "servizos web baixo o seu control", "ZIP download is turned off." => "As descargas ZIP están desactivadas.", "Files need to be downloaded one by one." => "Os ficheiros necesitan seren descargados dun en un.", "Back to Files" => "Volver aos ficheiros", diff --git a/lib/l10n/he.php b/lib/l10n/he.php index 0069d77eee..2e011e342a 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -5,6 +5,7 @@ "Users" => "משתמשים", "Apps" => "יישומים", "Admin" => "מנהל", +"web services under your control" => "שירותי רשת תחת השליטה שלך", "ZIP download is turned off." => "הורדת ZIP כבויה", "Files need to be downloaded one by one." => "יש להוריד את הקבצים אחד אחרי השני.", "Back to Files" => "חזרה לקבצים", diff --git a/lib/l10n/hr.php b/lib/l10n/hr.php index 3ce75c99f0..41c34d3108 100644 --- a/lib/l10n/hr.php +++ b/lib/l10n/hr.php @@ -5,6 +5,7 @@ "Users" => "Korisnici", "Apps" => "Aplikacije", "Admin" => "Administrator", +"web services under your control" => "web usluge pod vašom kontrolom", "Authentication error" => "Greška kod autorizacije", "Files" => "Datoteke", "Text" => "Tekst", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index beca4a1256..3aa04274fa 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -5,6 +5,7 @@ "Users" => "Felhasználók", "Apps" => "Alkalmazások", "Admin" => "Adminsztráció", +"web services under your control" => "webszolgáltatások saját kézben", "ZIP download is turned off." => "A ZIP-letöltés nincs engedélyezve.", "Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni.", "Back to Files" => "Vissza a Fájlokhoz", diff --git a/lib/l10n/ia.php b/lib/l10n/ia.php index 573281553f..e5f6e3ddf5 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -5,6 +5,7 @@ "Users" => "Usatores", "Apps" => "Applicationes", "Admin" => "Administration", +"web services under your control" => "servicios web sub tu controlo", "Files" => "Files", "Text" => "Texto" ); diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 8f72f24ea6..c247651f0c 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -5,6 +5,7 @@ "Users" => "Pengguna", "Apps" => "Aplikasi", "Admin" => "Admin", +"web services under your control" => "layanan web dalam kontrol Anda", "ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", "Files need to be downloaded one by one." => "Berkas harus diunduh satu persatu.", "Back to Files" => "Kembali ke Daftar Berkas", diff --git a/lib/l10n/is.php b/lib/l10n/is.php index 05bb688395..0f7a22fd13 100644 --- a/lib/l10n/is.php +++ b/lib/l10n/is.php @@ -5,6 +5,7 @@ "Users" => "Notendur", "Apps" => "Forrit", "Admin" => "Stjórnun", +"web services under your control" => "vefþjónusta undir þinni stjórn", "ZIP download is turned off." => "Slökkt á ZIP niðurhali.", "Files need to be downloaded one by one." => "Skrárnar verður að sækja eina og eina", "Back to Files" => "Aftur í skrár", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 92a3d201d3..74483315ca 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -5,6 +5,7 @@ "Users" => "Utenti", "Apps" => "Applicazioni", "Admin" => "Admin", +"web services under your control" => "servizi web nelle tue mani", "ZIP download is turned off." => "Lo scaricamento in formato ZIP è stato disabilitato.", "Files need to be downloaded one by one." => "I file devono essere scaricati uno alla volta.", "Back to Files" => "Torna ai file", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 804c0441da..36d06d360b 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -5,6 +5,7 @@ "Users" => "ユーザ", "Apps" => "アプリ", "Admin" => "管理", +"web services under your control" => "管理下のウェブサービス", "ZIP download is turned off." => "ZIPダウンロードは無効です。", "Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", "Back to Files" => "ファイルに戻る", diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index d2bb3ea2b0..c6e77da2da 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -5,6 +5,7 @@ "Users" => "მომხმარებელი", "Apps" => "აპლიკაციები", "Admin" => "ადმინისტრატორი", +"web services under your control" => "web services under your control", "ZIP download is turned off." => "ZIP download–ი გათიშულია", "Files need to be downloaded one by one." => "ფაილები უნდა გადმოიტვირთოს სათითაოდ.", "Back to Files" => "უკან ფაილებში", diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index bfb99544a3..31245ea96f 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -5,6 +5,7 @@ "Users" => "사용자", "Apps" => "앱", "Admin" => "관리자", +"web services under your control" => "내가 관리하는 웹 서비스", "ZIP download is turned off." => "ZIP 다운로드가 비활성화되었습니다.", "Files need to be downloaded one by one." => "파일을 개별적으로 다운로드해야 합니다.", "Back to Files" => "파일로 돌아가기", diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php index 20d0249f56..6d7461a168 100644 --- a/lib/l10n/ku_IQ.php +++ b/lib/l10n/ku_IQ.php @@ -3,5 +3,6 @@ "Settings" => "ده‌ستكاری", "Users" => "به‌كارهێنه‌ر", "Apps" => "به‌رنامه‌كان", -"Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی" +"Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", +"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" ); diff --git a/lib/l10n/lb.php b/lib/l10n/lb.php index 325e3bfa99..867b0a3740 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -5,6 +5,7 @@ "Users" => "Benotzer", "Apps" => "Applikatiounen", "Admin" => "Admin", +"web services under your control" => "Web-Servicer ënnert denger Kontroll", "Authentication error" => "Authentifikatioun's Fehler", "Files" => "Dateien", "Text" => "SMS", diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index b8268ed437..5e3a048203 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -5,6 +5,7 @@ "Users" => "Vartotojai", "Apps" => "Programos", "Admin" => "Administravimas", +"web services under your control" => "jūsų valdomos web paslaugos", "ZIP download is turned off." => "ZIP atsisiuntimo galimybė yra išjungta.", "Files need to be downloaded one by one." => "Failai turi būti parsiunčiami vienas po kito.", "Back to Files" => "Atgal į Failus", diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 3fade1ab20..662f4d5b24 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -5,6 +5,7 @@ "Users" => "Lietotāji", "Apps" => "Lietotnes", "Admin" => "Administratori", +"web services under your control" => "tīmekļa servisi tavā varā", "ZIP download is turned off." => "ZIP lejupielādēšana ir izslēgta.", "Files need to be downloaded one by one." => "Datnes var lejupielādēt tikai katru atsevišķi.", "Back to Files" => "Atpakaļ pie datnēm", diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index 34790c9374..30fa9ab73c 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -5,6 +5,7 @@ "Users" => "Корисници", "Apps" => "Аппликации", "Admin" => "Админ", +"web services under your control" => "веб сервиси под Ваша контрола", "ZIP download is turned off." => "Преземање во ZIP е исклучено", "Files need to be downloaded one by one." => "Датотеките треба да се симнат една по една.", "Back to Files" => "Назад кон датотеки", diff --git a/lib/l10n/ms_MY.php b/lib/l10n/ms_MY.php index 6abbbe86e8..a293059797 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -5,6 +5,7 @@ "Users" => "Pengguna", "Apps" => "Aplikasi", "Admin" => "Admin", +"web services under your control" => "Perkhidmatan web di bawah kawalan anda", "Authentication error" => "Ralat pengesahan", "Files" => "Fail-fail", "Text" => "Teks" diff --git a/lib/l10n/my_MM.php b/lib/l10n/my_MM.php index 5d1812fd74..f214a1ed79 100644 --- a/lib/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -3,6 +3,7 @@ "Users" => "သုံးစွဲသူ", "Apps" => "Apps", "Admin" => "အက်ဒမင်", +"web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services", "ZIP download is turned off." => "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်", "Files need to be downloaded one by one." => "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်", "Back to Files" => "ဖိုင်သို့ပြန်သွားမည်", diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index 23146154c7..ab2d4f9192 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -5,6 +5,7 @@ "Users" => "Brukere", "Apps" => "Apper", "Admin" => "Admin", +"web services under your control" => "web tjenester du kontrollerer", "ZIP download is turned off." => "ZIP-nedlasting av avslått", "Files need to be downloaded one by one." => "Filene må lastes ned en om gangen", "Back to Files" => "Tilbake til filer", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index e1c2627360..de80d1b5d5 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -5,6 +5,7 @@ "Users" => "Gebruikers", "Apps" => "Apps", "Admin" => "Beheerder", +"web services under your control" => "Webdiensten in eigen beheer", "ZIP download is turned off." => "ZIP download is uitgeschakeld.", "Files need to be downloaded one by one." => "Bestanden moeten één voor één worden gedownload.", "Back to Files" => "Terug naar bestanden", diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php index 8241573f9a..c173939810 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -5,6 +5,7 @@ "Users" => "Brukarar", "Apps" => "Program", "Admin" => "Administrer", +"web services under your control" => "Vev tjenester under din kontroll", "Authentication error" => "Feil i autentisering", "Files" => "Filer", "Text" => "Tekst", diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php index 85e2a27b43..a72da90790 100644 --- a/lib/l10n/oc.php +++ b/lib/l10n/oc.php @@ -5,6 +5,7 @@ "Users" => "Usancièrs", "Apps" => "Apps", "Admin" => "Admin", +"web services under your control" => "Services web jos ton contraròtle", "ZIP download is turned off." => "Avalcargar los ZIP es inactiu.", "Files need to be downloaded one by one." => "Los fichièrs devan èsser avalcargats un per un.", "Back to Files" => "Torna cap als fichièrs", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 92600785f8..bbca1913b7 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -5,6 +5,7 @@ "Users" => "Użytkownicy", "Apps" => "Aplikacje", "Admin" => "Administrator", +"web services under your control" => "Kontrolowane serwisy", "ZIP download is turned off." => "Pobieranie ZIP jest wyłączone.", "Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", "Back to Files" => "Wróć do plików", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 8b29f1510c..029331fdec 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -5,6 +5,7 @@ "Users" => "Usuários", "Apps" => "Aplicações", "Admin" => "Admin", +"web services under your control" => "serviços web sob seu controle", "ZIP download is turned off." => "Download ZIP está desligado.", "Files need to be downloaded one by one." => "Arquivos precisam ser baixados um de cada vez.", "Back to Files" => "Voltar para Arquivos", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 75824612ab..7480026e92 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -5,6 +5,7 @@ "Users" => "Utilizadores", "Apps" => "Aplicações", "Admin" => "Admin", +"web services under your control" => "serviços web sob o seu controlo", "ZIP download is turned off." => "Descarregamento em ZIP está desligado.", "Files need to be downloaded one by one." => "Os ficheiros precisam de ser descarregados um por um.", "Back to Files" => "Voltar a Ficheiros", diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index 6661caf86e..5a34e9571e 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -5,6 +5,7 @@ "Users" => "Utilizatori", "Apps" => "Aplicații", "Admin" => "Admin", +"web services under your control" => "servicii web controlate de tine", "ZIP download is turned off." => "Descărcarea ZIP este dezactivată.", "Files need to be downloaded one by one." => "Fișierele trebuie descărcate unul câte unul.", "Back to Files" => "Înapoi la fișiere", @@ -16,6 +17,8 @@ "Files" => "Fișiere", "Text" => "Text", "Images" => "Imagini", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă.", +"Please double check the installation guides." => "Vă rugăm să verificați ghiduri de instalare.", "seconds ago" => "secunde în urmă", "1 minute ago" => "1 minut în urmă", "%d minutes ago" => "%d minute în urmă", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 1753c54980..052b0487c6 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -5,6 +5,7 @@ "Users" => "Пользователи", "Apps" => "Приложения", "Admin" => "Admin", +"web services under your control" => "веб-сервисы под вашим управлением", "ZIP download is turned off." => "ZIP-скачивание отключено.", "Files need to be downloaded one by one." => "Файлы должны быть загружены по одному.", "Back to Files" => "Назад к файлам", diff --git a/lib/l10n/si_LK.php b/lib/l10n/si_LK.php index 4846fdcc06..49ded7026e 100644 --- a/lib/l10n/si_LK.php +++ b/lib/l10n/si_LK.php @@ -5,6 +5,7 @@ "Users" => "පරිශීලකයන්", "Apps" => "යෙදුම්", "Admin" => "පරිපාලක", +"web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්", "ZIP download is turned off." => "ZIP භාගත කිරීම් අක්‍රියයි", "Files need to be downloaded one by one." => "ගොනු එකින් එක භාගත යුතුයි", "Back to Files" => "ගොනු වෙතට නැවත යන්න", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 064484cc53..64ad1e540f 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -5,6 +5,7 @@ "Users" => "Používatelia", "Apps" => "Aplikácie", "Admin" => "Administrátor", +"web services under your control" => "webové služby pod Vašou kontrolou", "ZIP download is turned off." => "Sťahovanie súborov ZIP je vypnuté.", "Files need to be downloaded one by one." => "Súbory musia byť nahrávané jeden za druhým.", "Back to Files" => "Späť na súbory", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 5b96b61267..a5b4decd61 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -5,6 +5,7 @@ "Users" => "Uporabniki", "Apps" => "Programi", "Admin" => "Skrbništvo", +"web services under your control" => "spletne storitve pod vašim nadzorom", "ZIP download is turned off." => "Prejemanje datotek v paketu ZIP je onemogočeno.", "Files need to be downloaded one by one." => "Datoteke je mogoče prejeti le posamično.", "Back to Files" => "Nazaj na datoteke", diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index 25b9f0c55c..df5e2a3174 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -5,6 +5,7 @@ "Users" => "Përdoruesit", "Apps" => "App", "Admin" => "Admin", +"web services under your control" => "shërbime web nën kontrollin tënd", "ZIP download is turned off." => "Shkarimi i skedarëve ZIP është i çaktivizuar.", "Files need to be downloaded one by one." => "Skedarët duhet të shkarkohen një nga një.", "Back to Files" => "Kthehu tek skedarët", diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 45b8e06200..71d627e789 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -5,6 +5,7 @@ "Users" => "Корисници", "Apps" => "Апликације", "Admin" => "Администратор", +"web services under your control" => "веб сервиси под контролом", "ZIP download is turned off." => "Преузимање ZIP-а је искључено.", "Files need to be downloaded one by one." => "Датотеке морате преузимати једну по једну.", "Back to Files" => "Назад на датотеке", diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 7b024c4b49..56776e574a 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -5,6 +5,7 @@ "Users" => "Användare", "Apps" => "Program", "Admin" => "Admin", +"web services under your control" => "webbtjänster under din kontroll", "ZIP download is turned off." => "Nerladdning av ZIP är avstängd.", "Files need to be downloaded one by one." => "Filer laddas ner en åt gången.", "Back to Files" => "Tillbaka till Filer", diff --git a/lib/l10n/ta_LK.php b/lib/l10n/ta_LK.php index c9bb578b40..9193f6f1d2 100644 --- a/lib/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -5,6 +5,7 @@ "Users" => "பயனாளர்", "Apps" => "செயலிகள்", "Admin" => "நிர்வாகம்", +"web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது", "ZIP download is turned off." => "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது.", "Files need to be downloaded one by one." => "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்.", "Back to Files" => "கோப்புகளுக்கு செல்க", diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index 7cda4ab6ae..4ec6ef55f4 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -5,6 +5,7 @@ "Users" => "ผู้ใช้งาน", "Apps" => "แอปฯ", "Admin" => "ผู้ดูแล", +"web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้", "ZIP download is turned off." => "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้", "Files need to be downloaded one by one." => "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น", "Back to Files" => "กลับไปที่ไฟล์", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 057894540c..6325ad9886 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -5,6 +5,7 @@ "Users" => "Kullanıcılar", "Apps" => "Uygulamalar", "Admin" => "Yönetici", +"web services under your control" => "Bilgileriniz güvenli ve şifreli", "ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", "Back to Files" => "Dosyalara dön", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index a50b5eb264..7ff7829e1a 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -5,6 +5,7 @@ "Users" => "Користувачі", "Apps" => "Додатки", "Admin" => "Адмін", +"web services under your control" => "підконтрольні Вам веб-сервіси", "ZIP download is turned off." => "ZIP завантаження вимкнено.", "Files need to be downloaded one by one." => "Файли повинні бути завантаженні послідовно.", "Back to Files" => "Повернутися до файлів", diff --git a/lib/l10n/ur_PK.php b/lib/l10n/ur_PK.php index 7e09d79bc6..21e711c6df 100644 --- a/lib/l10n/ur_PK.php +++ b/lib/l10n/ur_PK.php @@ -4,5 +4,6 @@ "Settings" => "سیٹینگز", "Users" => "یوزرز", "Apps" => "ایپز", -"Admin" => "ایڈمن" +"Admin" => "ایڈمن", +"web services under your control" => "آپ کے اختیار میں ویب سروسیز" ); diff --git a/lib/l10n/vi.php b/lib/l10n/vi.php index 6a4b8ebac9..f2a7d669b8 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -5,6 +5,7 @@ "Users" => "Người dùng", "Apps" => "Ứng dụng", "Admin" => "Quản trị", +"web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn", "ZIP download is turned off." => "Tải về ZIP đã bị tắt.", "Files need to be downloaded one by one." => "Tập tin cần phải được tải về từng người một.", "Back to Files" => "Trở lại tập tin", diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 3ab35f2baf..4780a69eb3 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -5,6 +5,7 @@ "Users" => "用户", "Apps" => "程序", "Admin" => "管理员", +"web services under your control" => "您控制的网络服务", "ZIP download is turned off." => "ZIP 下载已关闭", "Files need to be downloaded one by one." => "需要逐个下载文件。", "Back to Files" => "返回到文件", diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 8bd87cbfe7..7630f885c4 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -5,6 +5,7 @@ "Users" => "用户", "Apps" => "应用", "Admin" => "管理", +"web services under your control" => "您控制的web服务", "ZIP download is turned off." => "ZIP 下载已经关闭", "Files need to be downloaded one by one." => "需要逐一下载文件", "Back to Files" => "回到文件", diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 43e37ad3ad..afd196f7c8 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -5,6 +5,7 @@ "Users" => "使用者", "Apps" => "應用程式", "Admin" => "管理", +"web services under your control" => "由您控制的網路服務", "ZIP download is turned off." => "ZIP 下載已關閉。", "Files need to be downloaded one by one." => "檔案需要逐一下載。", "Back to Files" => "回到檔案列表", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 48f18070f3..021561cf6a 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,6 +1,8 @@ "Imposibil de încărcat lista din App Store", +"Unable to load list from App Store" => "Imposibil de actualizat lista din App Store.", "Authentication error" => "Eroare la autentificare", +"Your display name has been changed." => "Numele afişat a fost schimbat.", +"Unable to change display name" => "Imposibil de schimbat numele afişat.", "Group already exists" => "Grupul există deja", "Unable to add group" => "Nu s-a putut adăuga grupul", "Could not enable app. " => "Nu s-a putut activa aplicația.", @@ -13,18 +15,38 @@ "Admins can't remove themself from the admin group" => "Administratorii nu se pot șterge singuri din grupul admin", "Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s", "Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", +"Couldn't update app." => "Aplicaţia nu s-a putut actualiza.", +"Update to {appversion}" => "Actualizat la {versiuneaaplicaţiei}", "Disable" => "Dezactivați", "Enable" => "Activare", +"Please wait...." => "Aşteptaţi vă rog....", "Error" => "Eroare", +"Updating...." => "Actualizare în curs....", +"Error while updating app" => "Eroare în timpul actualizării aplicaţiei", +"Updated" => "Actualizat", "Saving..." => "Se salvează...", "deleted" => "șters", "undo" => "Anulează ultima acțiune", +"Unable to remove user" => "Imposibil de eliminat utilizatorul", "Groups" => "Grupuri", "Group Admin" => "Grupul Admin ", "Delete" => "Șterge", +"add group" => "adăugaţi grupul", +"A valid username must be provided" => "Trebuie să furnizaţi un nume de utilizator valid", +"Error creating user" => "Eroare la crearea utilizatorului", +"A valid password must be provided" => "Trebuie să furnizaţi o parolă validă", "__language_name__" => "_language_name_", "Security Warning" => "Avertisment de securitate", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", +"Setup Warning" => "Atenţie la implementare", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă.", +"Please double check the installation guides." => "Vă rugăm să verificați ghiduri de instalare.", +"Module 'fileinfo' missing" => "Modulul \"Fileinfo\" lipsește", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type.", +"Locale not working" => "Localizarea nu funcționează", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Acest server ownCloud nu poate seta sistemul de localizare pentru% s. Acest lucru înseamnă că ar putea exista probleme cu anumite caractere în numele de fișiere. Vă recomandăm să instalați pachetele necesare pe sistemul dumneavoastră pentru a sprijini% s.", +"Internet connection not working" => "Conexiunea la internet nu funcționează", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Acest server ownCloud nu are nici o conexiune la internet activă. Acest lucru înseamnă că anumite caracteristici, cum ar fi montarea mediilor de stocare externe, notificări despre actualizări sau instalarea de aplicatii tereţe nu funcționează. Accesarea fișierelor de la distanță și trimiterea de e-mailuri de notificare s-ar putea, de asemenea, să nu funcționeze. Vă sugerăm să permiteţi conectarea la Internet pentru acest server, dacă doriți să aveți toate caracteristicile de oferite de ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Execută o sarcină la fiecare pagină încărcată", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php este înregistrat în serviciul webcron. Accesează pagina cron.php din root-ul owncloud odată pe minut prin http.", @@ -38,6 +60,7 @@ "Allow users to share items shared with them again" => "Permite utilizatorilor să repartajeze fișiere partajate cu ei", "Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", "Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", +"Security" => "Securitate", "Log" => "Jurnal de activitate", "Log level" => "Nivel jurnal", "More" => "Mai mult", From 096d7674fc84777b8251cc42d88d6979a82b1ec0 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 7 Jul 2013 02:06:06 +0200 Subject: [PATCH 47/49] [tx-robot] updated from transifex --- apps/files/l10n/fa.php | 6 ++ apps/files/l10n/gl.php | 5 + apps/files/l10n/hi.php | 1 + apps/files/l10n/ja_JP.php | 2 + apps/files_encryption/l10n/gl.php | 2 + apps/files_encryption/l10n/ja_JP.php | 2 + apps/files_sharing/l10n/gl.php | 1 + apps/files_sharing/l10n/ja_JP.php | 1 + apps/user_ldap/l10n/hi.php | 1 + apps/user_ldap/l10n/zh_TW.php | 65 +++++++++++++ core/l10n/fa.php | 10 ++ core/l10n/gl.php | 1 + core/l10n/hi.php | 1 + l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 4 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 4 +- l10n/bs/files.po | 4 +- l10n/bs/files_trashbin.po | 4 +- l10n/ca/core.po | 4 +- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 4 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 4 +- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 4 +- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 4 +- l10n/da/files.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 4 +- l10n/de/files.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 4 +- l10n/el/files.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/eo/core.po | 4 +- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files.po | 4 +- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 27 +++--- l10n/fa/files.po | 19 ++-- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 9 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 8 +- l10n/gl/files.po | 16 ++-- l10n/gl/files_encryption.po | 10 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 9 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 4 +- l10n/he/files.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 6 +- l10n/hi/files.po | 6 +- l10n/hi/files_trashbin.po | 24 ++--- l10n/hi/settings.po | 128 ++++++++++++------------- l10n/hi/user_ldap.po | 6 +- l10n/hr/core.po | 4 +- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +- l10n/ia/core.po | 4 +- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 4 +- l10n/id/files.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 4 +- l10n/is/files.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 4 +- l10n/it/files.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 4 +- l10n/ja_JP/files.po | 11 ++- l10n/ja_JP/files_encryption.po | 10 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 9 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 4 +- l10n/ja_JP/settings.po | 4 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/ko/core.po | 4 +- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 4 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 4 +- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 4 +- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 4 +- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 4 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 4 +- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/nl/core.po | 4 +- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 4 +- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 4 +- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 4 +- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 4 +- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 4 +- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 4 +- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 4 +- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 4 +- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 4 +- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 4 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 4 +- l10n/sv/core.po | 4 +- l10n/sv/files.po | 4 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 4 +- l10n/te/files.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 4 +- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 4 +- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 4 +- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 4 +- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 4 +- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 4 +- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 4 +- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 4 +- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 137 ++++++++++++++------------- settings/l10n/fa.php | 1 + settings/l10n/hi.php | 2 + 544 files changed, 1335 insertions(+), 1227 deletions(-) diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 94ac167837..73f4b493b4 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,6 +1,8 @@ "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. ", "Could not move %s" => "%s نمی تواند حرکت کند ", +"Unable to set upload directory." => "قادر به تنظیم پوشه آپلود نمی باشد.", +"Invalid Token" => "رمز نامعتبر", "No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس", "There is no error, the file uploaded with success" => "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است.", @@ -17,6 +19,7 @@ "Upload cancelled." => "بار گذاری لغو شد", "File upload is in progress. Leaving the page now will cancel the upload." => "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. ", "URL cannot be empty." => "URL نمی تواند خالی باشد.", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "نام پوشه نامعتبر است. استفاده از 'به اشتراک گذاشته شده' متعلق به ownCloud میباشد.", "Error" => "خطا", "Share" => "اشتراک‌گذاری", "Delete permanently" => "حذف قطعی", @@ -46,6 +49,7 @@ "{count} folders" => "{ شمار} پوشه ها", "1 file" => "1 پرونده", "{count} files" => "{ شمار } فایل ها", +"%s could not be renamed" => "%s نمیتواند تغییر نام دهد.", "Upload" => "بارگزاری", "File handling" => "اداره پرونده ها", "Maximum upload size" => "حداکثر اندازه بارگزاری", @@ -69,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", "Files are being scanned, please wait." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید", "Current scanning" => "بازرسی کنونی", +"directory" => "پوشه", +"directories" => "پوشه ها", "file" => "پرونده", "files" => "پرونده ها", "Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..." diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 106f6d6ff0..bba6335ae0 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,6 +1,8 @@ "Non se moveu %s - Xa existe un ficheiro con ese nome.", "Could not move %s" => "Non foi posíbel mover %s", +"Unable to set upload directory." => "Non é posíbel configurar o directorio de envíos.", +"Invalid Token" => "Marca incorrecta", "No file was uploaded. Unknown error" => "Non se enviou ningún ficheiro. Produciuse un erro descoñecido.", "There is no error, the file uploaded with success" => "Non houbo erros, o ficheiro enviouse correctamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:", @@ -47,6 +49,7 @@ "{count} folders" => "{count} cartafoles", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"%s could not be renamed" => "%s non pode cambiar de nome", "Upload" => "Enviar", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo do envío", @@ -70,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor", "Files are being scanned, please wait." => "Estanse analizando os ficheiros. Agarde.", "Current scanning" => "Análise actual", +"directory" => "directorio", +"directories" => "directorios", "file" => "ficheiro", "files" => "ficheiros", "Upgrading filesystem cache..." => "Anovando a caché do sistema de ficheiros..." diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index df57abe28b..151d1f497c 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -1,4 +1,5 @@ "त्रुटि", "Share" => "साझा करें", "Save" => "सहेजें" ); diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index d91d509283..e4be3133fb 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -73,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。", "Files are being scanned, please wait." => "ファイルをスキャンしています、しばらくお待ちください。", "Current scanning" => "スキャン中", +"directory" => "ディレクトリ", +"directories" => "ディレクトリ", "file" => "ファイル", "files" => "ファイル", "Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index 7469aba495..db6f57bb36 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -8,6 +8,8 @@ "Private key password successfully updated." => "A chave privada foi actualizada correctamente.", "Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", +"Missing requirements." => "Non se cumpren os requisitos.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", "Saving..." => "Gardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", "You can unlock your private key in your " => "Pode desbloquear a chave privada nos seus", diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index 5f2d3656e2..a1fcbd5c54 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -8,6 +8,8 @@ "Private key password successfully updated." => "秘密鍵のパスワードが正常に更新されました。", "Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。", +"Missing requirements." => "必要要件が満たされていません。", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。", "Saving..." => "保存中...", "Your private key is not valid! Maybe the your password was changed from outside." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", "You can unlock your private key in your " => "個人設定で", diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index a7a3cbb9c3..2d8de8e101 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -1,4 +1,5 @@ "O contrasinal é incorrecto. Ténteo de novo.", "Password" => "Contrasinal", "Submit" => "Enviar", "%s shared the folder %s with you" => "%s compartiu o cartafol %s con vostede", diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 3f3cfbfb3b..d2bc2d1124 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -1,4 +1,5 @@ "パスワードが間違っています。再試行してください。", "Password" => "パスワード", "Submit" => "送信", "%s shared the folder %s with you" => "%s はフォルダー %s をあなたと共有中です", diff --git a/apps/user_ldap/l10n/hi.php b/apps/user_ldap/l10n/hi.php index 45166eb0e3..8e8e4e8ff6 100644 --- a/apps/user_ldap/l10n/hi.php +++ b/apps/user_ldap/l10n/hi.php @@ -1,4 +1,5 @@ "त्रुटि", "Password" => "पासवर्ड", "Help" => "सहयोग" ); diff --git a/apps/user_ldap/l10n/zh_TW.php b/apps/user_ldap/l10n/zh_TW.php index d01e75356c..cde743f003 100644 --- a/apps/user_ldap/l10n/zh_TW.php +++ b/apps/user_ldap/l10n/zh_TW.php @@ -1,11 +1,76 @@ "清除映射失敗", +"Failed to delete the server configuration" => "刪除伺服器設定時失敗", +"The configuration is valid and the connection could be established!" => "設定有效且連線可建立", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "設定有效但連線無法建立。請檢查伺服器的設定與認證資料。", +"The configuration is invalid. Please look in the ownCloud log for further details." => "設定無效。更多細節請參閱ownCloud的記錄檔。", "Deletion failed" => "移除失敗", +"Take over settings from recent server configuration?" => "要使用最近一次的伺服器設定嗎?", +"Keep settings?" => "維持設定嗎?", +"Cannot add server configuration" => "無法新增伺服器設定", +"mappings cleared" => "映射已清除", "Success" => "成功", "Error" => "錯誤", +"Connection test succeeded" => "連線測試成功", +"Connection test failed" => "連線測試失敗", +"Do you really want to delete the current Server Configuration?" => "您真的確定要刪除現在的伺服器設定嗎?", +"Confirm Deletion" => "確認已刪除", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "警告: 應用程式user_ldap和user_webdavauth互不相容。可能會造成無法預期的結果。請要求您的系統管理員將兩者其中之一停用。", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作。請要求您的系統管理員安裝模組。", +"Server configuration" => "伺服器設定", +"Add Server Configuration" => "新增伺服器設定", "Host" => "主機", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "若您不需要SSL加密傳輸則可忽略通訊協定。若非如此請從ldaps://開始", +"One Base DN per line" => "一行一個Base DN", +"You can specify Base DN for users and groups in the Advanced tab" => "您可以在進階標籤頁裡面指定使用者及群組的Base DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "客戶端使用者的DN與特定字詞的連結需要完善,例如:uid=agent,dc=example,dc=com。若是匿名連接,則將DN與密碼欄位留白。", "Password" => "密碼", +"For anonymous access, leave DN and Password empty." => "匿名連接時請將DN與密碼欄位留白", +"User Login Filter" => "使用者登入過濾器", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "試圖登入時會定義要套用的篩選器。登入過程中%%uid會取代使用者名稱。", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "請使用 %%uid placeholder,例如:\"uid=%%uid\"", +"User List Filter" => "使用者名單篩選器", +"Defines the filter to apply, when retrieving users." => "檢索使用者時定義要套用的篩選器", +"without any placeholder, e.g. \"objectClass=person\"." => "請勿使用任何placeholder,例如:\"objectClass=person\"。", +"Group Filter" => "群組篩選器", +"Defines the filter to apply, when retrieving groups." => "檢索群組時,定義要套用的篩選器", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "請勿使用任何placeholder,例如:\"objectClass=posixGroup\"。", +"Connection Settings" => "連線設定", +"Configuration Active" => "設定為主動模式", +"When unchecked, this configuration will be skipped." => "沒有被勾選時,此設定會被略過。", "Port" => "連接阜", +"Backup (Replica) Host" => "備用主機", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "請給定一個可選的備用主機。必須是LDAP/AD中央伺服器的複本。", +"Backup (Replica) Port" => "備用(複本)連接阜", +"Disable Main Server" => "停用主伺服器", +"When switched on, ownCloud will only connect to the replica server." => "當開關打開時,ownCloud將只會連接複本伺服器。", "Use TLS" => "使用TLS", +"Case insensitve LDAP server (Windows)" => "不區分大小寫的LDAP伺服器(Windows)", "Turn off SSL certificate validation." => "關閉 SSL 憑證驗證", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "若連線只有在此選項開啟時運作,請匯入LDAP伺服器的SSL認證到您的ownCloud伺服器。", +"Not recommended, use for testing only." => "不推薦使用,僅供測試用途。", +"Cache Time-To-Live" => "快取的存活時間", +"in seconds. A change empties the cache." => "以秒為單位。更變後會清空快取。", +"Directory Settings" => "目錄選項", +"User Display Name Field" => "使用者名稱欄位", +"The LDAP attribute to use to generate the user`s ownCloud name." => "用於產生ownCloud名稱", +"Base User Tree" => "Base使用者數", +"One User Base DN per line" => "一行一個使用者Base DN", +"User Search Attributes" => "使用者搜索屬性", +"Optional; one attribute per line" => "可選的; 一行一項屬性", +"Group Display Name Field" => "群組顯示名稱欄位", +"Base Group Tree" => "Base群組樹", +"One Group Base DN per line" => "一行一個群組Base DN", +"Group Search Attributes" => "群組搜索屬性", +"Group-Member association" => "群組成員的關係", +"Special Attributes" => "特殊屬性", +"Quota Field" => "配額欄位", +"Quota Default" => "預設配額", +"in bytes" => "以位元組為單位", +"Email Field" => "電郵欄位", +"User Home Folder Naming Rule" => "使用者家目錄的命名規則", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "使用者名稱請留白(預設)。若不留白請指定一個LDAP/AD屬性。", +"Internal Username" => "內部使用者名稱", +"Test Configuration" => "測試此設定", "Help" => "說明" ); diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 1a7ebf507d..02fe2ce114 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -1,4 +1,5 @@ "%s به اشتراک گذاشته شده است »%s« توسط شما", "Category type not provided." => "نوع دسته بندی ارائه نشده است.", "No category to add?" => "آیا گروه دیگری برای افزودن ندارید", "This category already exists: %s" => "این دسته هم اکنون وجود دارد: %s", @@ -42,6 +43,7 @@ "years ago" => "سال‌های قبل", "Choose" => "انتخاب کردن", "Cancel" => "منصرف شدن", +"Error loading file picker template" => "خطا در بارگذاری قالب انتخاب کننده فایل", "Yes" => "بله", "No" => "نه", "Ok" => "قبول", @@ -60,6 +62,7 @@ "Share with link" => "به اشتراک گذاشتن با پیوند", "Password protect" => "نگهداری کردن رمز عبور", "Password" => "گذرواژه", +"Allow Public Upload" => "اجازه آپلود عمومی", "Email link to person" => "پیوند ایمیل برای شخص.", "Send" => "ارسال", "Set expiration date" => "تنظیم تاریخ انقضا", @@ -84,8 +87,12 @@ "The update was successful. Redirecting you to ownCloud now." => "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud.", "ownCloud password reset" => "پسورد ابرهای شما تغییرکرد", "Use the following link to reset your password: {link}" => "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "لینک تنظیم مجدد رمز عبور به ایمیل شما ارسال شده است.
اگر آن رادر یک زمان مشخصی دریافت نکرده اید، لطفا هرزنامه/ پوشه های ناخواسته را بررسی کنید.
در صورت نبودن از مدیر خود بپرسید.", +"Request failed!
Did you make sure your email/username was right?" => "درخواست رد شده است !
آیا مطمئن هستید که ایمیل/ نام کاربری شما صحیح میباشد ؟", "You will receive a link to reset your password via Email." => "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد.", "Username" => "نام کاربری", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "فایل های شما رمزگذاری شده اند. اگر شما کلید بازیابی را فعال نکرده اید، پس از راه اندازی مجدد رمزعبور هیچ راهی برای بازگشت اطلاعاتتان وجود نخواهد داشت.در صورت عدم اطمینان به انجام کار، لطفا ابتدا با مدیر خود تماس بگیرید. آیا واقعا میخواهید ادامه دهید ؟", +"Yes, I really want to reset my password now" => "بله، من اکنون میخواهم رمز عبور خود را مجددا راه اندازی کنم.", "Request reset" => "درخواست دوباره سازی", "Your password was reset" => "گذرواژه شما تغییرکرد", "To login page" => "به صفحه ورود", @@ -98,6 +105,7 @@ "Help" => "راه‌نما", "Access forbidden" => "اجازه دسترسی به مناطق ممنوعه را ندارید", "Cloud not found" => "پیدا نشد", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "اینجا,⏎\n فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده %s توسط شما.⏎\nمشاهده آن : %s⏎\n⏎\nبه سلامتی!", "Edit categories" => "ویرایش گروه", "Add" => "افزودن", "Security Warning" => "اخطار امنیتی", @@ -118,6 +126,7 @@ "Database tablespace" => "جدول پایگاه داده", "Database host" => "هاست پایگاه داده", "Finish setup" => "اتمام نصب", +"%s is available. Get more information on how to update." => "%s در دسترس است. برای چگونگی به روز رسانی اطلاعات بیشتر را دریافت نمایید.", "Log out" => "خروج", "Automatic logon rejected!" => "ورود به سیستم اتوماتیک ردشد!", "If you did not change your password recently, your account may be compromised!" => "اگر شما اخیرا رمزعبور را تغییر نداده اید، حساب شما در معرض خطر می باشد !", @@ -126,6 +135,7 @@ "remember" => "بیاد آوری", "Log in" => "ورود", "Alternative Logins" => "ورود متناوب", +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" => "اینجا

فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده»%s« توسط شما.
مشاهده آن!

به سلامتی!", "prev" => "بازگشت", "next" => "بعدی", "Updating ownCloud to version %s, this may take a while." => "به روز رسانی OwnCloud به نسخه ی %s، این عملیات ممکن است زمان بر باشد." diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 8d2404672e..b55daf27c2 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -62,6 +62,7 @@ "Share with link" => "Compartir coa ligazón", "Password protect" => "Protexido con contrasinais", "Password" => "Contrasinal", +"Allow Public Upload" => "Permitir o envío público", "Email link to person" => "Enviar ligazón por correo", "Send" => "Enviar", "Set expiration date" => "Definir a data de caducidade", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index afdd91d5f8..4285f8ce57 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -12,6 +12,7 @@ "November" => "नवंबर", "December" => "दिसम्बर", "Settings" => "सेटिंग्स", +"Error" => "त्रुटि", "Share" => "साझा करें", "Share with" => "के साथ साझा", "Password" => "पासवर्ड", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index d9b2052c10..7b3a314dc6 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index fc59766373..69a0d82298 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 0fd555a230..7556d9adf6 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 0b985ca8e6..087b64efdb 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index eda6c2c0f4..2ae2d24bd7 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index b060f648c2..202d9c6b0e 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 7c9d24129c..b698940e3f 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index f4a507e60a..fa1a954195 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index d1ef7babd2..79f1e2e3dd 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index d95f5ae2d4..3b94afdd04 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index f35a3a07ce..977488e063 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 36f87f5409..cbb1540590 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 81fdbdd8b4..0e8b51471a 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 8b442af533..26a30f0297 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index c91fff77fd..94d425248a 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 7efdc6ea20..8a4443adf3 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index ff9ebb729a..164bf11602 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 531ff77232..0ba6255663 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 6de73a99fa..cba8ae64ac 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 4481188cc3..fa0285217e 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index eb998834c5..22cd6b42ca 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 3893041c54..5e9b5e9819 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index c7b1c6ab6a..046ce452e5 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 17b51c67f3..5880b2ae67 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 7c32923e87..0d80e780d8 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index e6e561e1b8..3d8cc02a35 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 16a03e0c99..660830832c 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 50c17f021b..ff6baefa69 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 40ee68ff48..84bdd8f0f9 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: Josep Tomàs \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 094ecb43ea..a16cf3c045 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 8915a32be2..7341b4dfdf 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 47c8fe5646..1e18c4bf30 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index ea46c075cd..913f6a953a 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index ae55f72a30..86b5a465be 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 6c82689132..51333a6133 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index f315483018..980f1dbf54 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 7aab8e7ee1..27a68b24dc 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index f00d247570..436225b567 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index c2fc5f82c0..aec83bccdf 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 6ce865c36e..1a68432a78 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 6b85883f70..93e6c43e72 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 1fd4480a5a..7a66e9553f 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 46a826a5a2..961cbe91c4 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 5e46cbf1af..0c911d0ae9 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 2ddaa3b2f4..ee5b45cfcb 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index f69fd17ef0..d282da92c1 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index cc93b290f3..a24592c9e8 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index c667ef6797..059469d539 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index d1d57fed4d..164a3f3b45 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 4a0b8b34ed..53adcdd242 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 7f1abf60f5..2c8b78e664 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index be8521956e..758a80526f 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index b260b10882..55f500dd2f 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 0e346d0257..31242cb32c 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 0ada470c56..ebac988b05 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 2426bff970..ba66ba99ab 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 79ebf979fa..f61f28e93d 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 555256023e..a002ab0d07 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 2ad8275534..7b961cc05d 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 485aa4b54d..9b2f2c92b5 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 6d32794c00..2cd84dbdee 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index af886c7745..3a345f6fc3 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index a6e55b5c8f..831b0c4390 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 26f44fe7e6..c4c1427f2a 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index ee6adfdedf..4466fd8578 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 29e35ace1e..a219101323 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index c3c1d5b460..42e51c3ec7 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 57f3771ddc..da72733d01 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 54532e2c2f..9f1d0f5a60 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index a8807b7a59..b84a11ad19 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 50cab1988e..fb84d74a17 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index b4769932d6..4b32dd9a1c 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 858d0a8fa5..d4ce41cf5c 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index e045e1d630..d01e9c7411 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index aef7f90ddd..cd5edb7af7 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index b58b392163..4332cfb072 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index 66419fbe41..6b0883e82e 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index c2e0f5025f..bbb1627bb1 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 3b1e18198b..dcbcc3e5ee 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index fd278706de..dba39b0239 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 121db23366..ea115ae025 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index f4ef42789d..17751429ac 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index b6557a9b6d..01e72579db 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 2d1d1e9723..7085813c0c 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 6e5cbc2c65..0e20970a6e 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 90f51b9850..656683f1a0 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index ff013b6f29..3e881c1ffd 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 26ec2c1921..652318d63d 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 8b289b88f3..0665488a83 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 0b9861b786..09c9fba004 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 64672b9616..5732d06206 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 79c1f25a60..c8fab032cf 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 65b83653c9..57538c812a 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index bf67ad45a0..058ba1e541 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index df2dec14d2..299c46273b 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: mikelanabitarte \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index d7df67a59e..e33aeae34d 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index e32d86797a..66bdf45dab 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 0204231bda..91137a04fd 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 5d89f63fb2..6ac5a20f36 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index f298d006d8..7e15bd398d 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 17d50e2f1e..f58906dcbe 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 7649556a37..67cb939b45 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 57738f609d..cf0bb9d6de 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 597cf50109..4686b2c6bc 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index dd0c9c5614..e52eb0b7a1 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 69308ad76a..11001b3bc1 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 3acf25f44e..fae53dd9e7 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 6859a9473e..ff52cbae5e 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 2bc1a1ff4d..f3591aa001 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index d96c79ee49..529d71afb7 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 57e04c9e21..136b7b1b6c 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 3349108667..e2b20646e3 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index b4be21b44f..351c112879 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 74d96ccb2c..ec6ff4f669 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 44e9152e84..8f3caa4f12 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 487a3246c6..4e590eab41 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 72c8c0660a..86f2cb1344 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 082a4cc22f..20667c2b8c 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index db44889b8d..24f5f5bdea 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 54174338e1..52b8ac20be 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 3bc0ad973e..185fa568ae 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 71c55b41e0..6d81347540 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 7793a21021..b9d5b65a4b 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 821f0a6e21..d59e96233f 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 8f0a226a5e..76e4cca31e 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 883ac61112..19416f2dfc 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -203,7 +204,7 @@ msgstr "منصرف شدن" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "خطا در بارگذاری قالب انتخاب کننده فایل" #: js/oc-dialogs.js:164 msgid "Yes" @@ -284,7 +285,7 @@ msgstr "گذرواژه" #: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "اجازه آپلود عمومی" #: js/share.js:191 msgid "Email link to person" @@ -390,11 +391,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "لینک تنظیم مجدد رمز عبور به ایمیل شما ارسال شده است.
اگر آن رادر یک زمان مشخصی دریافت نکرده اید، لطفا هرزنامه/ پوشه های ناخواسته را بررسی کنید.
در صورت نبودن از مدیر خود بپرسید." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "درخواست رد شده است !
آیا مطمئن هستید که ایمیل/ نام کاربری شما صحیح میباشد ؟" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -411,11 +412,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "فایل های شما رمزگذاری شده اند. اگر شما کلید بازیابی را فعال نکرده اید، پس از راه اندازی مجدد رمزعبور هیچ راهی برای بازگشت اطلاعاتتان وجود نخواهد داشت.در صورت عدم اطمینان به انجام کار، لطفا ابتدا با مدیر خود تماس بگیرید. آیا واقعا میخواهید ادامه دهید ؟" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "بله، من اکنون میخواهم رمز عبور خود را مجددا راه اندازی کنم." #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -474,7 +475,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "اینجا,⏎\n فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده %s توسط شما.⏎\nمشاهده آن : %s⏎\n⏎\nبه سلامتی!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -571,7 +572,7 @@ msgstr "اتمام نصب" #: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s در دسترس است. برای چگونگی به روز رسانی اطلاعات بیشتر را دریافت نمایید." #: templates/layout.user.php:68 msgid "Log out" @@ -612,7 +613,7 @@ msgstr "ورود متناوب" msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" -msgstr "" +msgstr "اینجا

فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده»%s« توسط شما.
مشاهده آن!

به سلامتی!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index d23c5b7a9d..4025d89449 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,11 +30,11 @@ msgstr "%s نمی تواند حرکت کند " #: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." -msgstr "" +msgstr "قادر به تنظیم پوشه آپلود نمی باشد." #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "رمز نامعتبر" #: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" @@ -105,7 +106,7 @@ msgstr "URL نمی تواند خالی باشد." #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "نام پوشه نامعتبر است. استفاده از 'به اشتراک گذاشته شده' متعلق به ownCloud میباشد." #: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 #: js/files.js:693 js/files.js:731 @@ -231,7 +232,7 @@ msgstr "{ شمار } فایل ها" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s نمیتواند تغییر نام دهد." #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -329,11 +330,11 @@ msgstr "بازرسی کنونی" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "پوشه" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "پوشه ها" #: templates/part.list.php:89 msgid "file" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 0dc81a6887..605f8e977c 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 33c719099f..4b79178c76 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 846d5024e3..17e51aacf8 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 34c0d93f36..d745d9a478 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 0513392879..cd66d0d598 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -209,7 +210,7 @@ msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکید #: templates/admin.php:60 msgid "Locale not working" -msgstr "" +msgstr "زبان محلی کار نمی کند." #: templates/admin.php:65 #, php-format diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 93c362086b..48f895880e 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 2681c62651..c06463c8a6 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 1ec8619fc4..0844c5aa57 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index b99169560c..67766647a9 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index c20aae6bb2..c5fdf50326 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 0cdbadd56b..da0ae0ae96 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 86c918dd80..f8022d3a6d 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index bffc977b0d..714a577de7 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 7a4d147d66..1dbcb293f6 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 8566e5de5f..1d4393fe45 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index d747e24299..0344dbe8c5 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 20bc5932c1..f890257607 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index e2c1dceabf..840bb3abfe 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index b3a397eee8..cc8f2ffdc1 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 55ae0b39b1..9c9799049b 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 4b611d1396..2ddd532994 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index b0cb6480d5..e1ce982eaf 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 2ca6926f62..05499d79f5 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -285,7 +285,7 @@ msgstr "Contrasinal" #: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitir o envío público" #: js/share.js:191 msgid "Email link to person" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index a7ea9bed42..24699efb8a 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,11 +30,11 @@ msgstr "Non foi posíbel mover %s" #: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." -msgstr "" +msgstr "Non é posíbel configurar o directorio de envíos." #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Marca incorrecta" #: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" @@ -232,7 +232,7 @@ msgstr "{count} ficheiros" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s non pode cambiar de nome" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -330,11 +330,11 @@ msgstr "Análise actual" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "directorio" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "directorios" #: templates/part.list.php:89 msgid "file" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 45a139836f..a8f83b07bb 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 09:11+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,14 +66,14 @@ msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teñ #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Non se cumpren os requisitos." #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "" +msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 04b2f8066b..d5beedea7a 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 01fad78c28..c25384f685 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mbouzada , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "O contrasinal é incorrecto. Ténteo de novo." #: templates/authenticate.php:7 msgid "Password" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 3099684ce5..0a53f820c3 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index ec8edc5d4e..475bddcf71 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index d073a2db71..7731af3485 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 18a618a495..d859f5bdb2 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 8eebb30ca3..7404c2fa19 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 876dea6397..fc8e80f2a3 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index b9805273bb..065ad6c68c 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 9cd62a69c1..5930fb9759 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 836bfb84c6..5d3e74dfec 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index bcf5f3f287..f15f83e275 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 9345a681d0..2354753494 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 4c3322b606..fd633e6958 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index ed2c3fa7c1..535088f920 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -229,7 +229,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 #: js/share.js:632 msgid "Error" -msgstr "" +msgstr "त्रुटि" #: js/oc-vcategories.js:179 msgid "The app name is not specified." diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 17b887d011..568cab2ca3 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -110,7 +110,7 @@ msgstr "" #: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 #: js/files.js:693 js/files.js:731 msgid "Error" -msgstr "" +msgstr "त्रुटि" #: js/fileactions.js:116 msgid "Share" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 6c057b0c24..4a821f4ebc 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:97 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 msgid "Error" -msgstr "" +msgstr "त्रुटि" #: js/trash.js:34 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:123 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:176 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:177 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 +#: js/trash.js:186 msgid "1 folder" msgstr "" -#: js/trash.js:186 +#: js/trash.js:188 msgid "{count} folders" msgstr "" -#: js/trash.js:194 +#: js/trash.js:196 msgid "1 file" msgstr "" -#: js/trash.js:196 +#: js/trash.js:198 msgid "{count} files" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 9098972370..9b8e044f3f 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -88,35 +88,35 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: js/apps.js:30 +#: js/apps.js:35 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:36 js/apps.js:76 +#: js/apps.js:41 js/apps.js:81 msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 js/apps.js:83 +#: js/apps.js:41 js/apps.js:69 js/apps.js:88 msgid "Enable" msgstr "" -#: js/apps.js:55 +#: js/apps.js:60 msgid "Please wait...." msgstr "" -#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 msgid "Error" -msgstr "" +msgstr "त्रुटि" -#: js/apps.js:90 +#: js/apps.js:95 msgid "Updating...." msgstr "" -#: js/apps.js:93 +#: js/apps.js:98 msgid "Error while updating app" msgstr "" -#: js/apps.js:96 +#: js/apps.js:101 msgid "Updated" msgstr "" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:116 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:119 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "पासवर्ड" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 43f46c038a..51dc53b007 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" #: js/settings.js:117 msgid "Error" -msgstr "" +msgstr "त्रुटि" #: js/settings.js:141 msgid "Connection test succeeded" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 2d866bd4d2..f5535fc3fa 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 02f46ae409..095730a21f 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 4012bfed40..e963719f47 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index fe7c114bc8..821b77bca5 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 9df1866239..f543b87e33 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 6469184758..ddc3bd2733 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 4762149a04..b2536a62a8 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 1cdcc6e7b1..4029a14e1b 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 7d16f1cb9f..adc7377c18 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 3aa7b8b073..56cd13e50d 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index d33444d639..4bb6d28c96 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 6072a38959..7ad98d36f7 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 225d42ad0c..1ada9376d5 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 17e58b2195..377f981460 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 038cf2544d..613fcb0886 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index d2e20cc178..ca3cfd9c45 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 0226e07b75..d85f0f0aa4 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 1cbc795d67..866287cb69 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 656756871b..44b8c5b5e7 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 1b2e7c2cf7..54de6e10d0 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 17b88055ec..07b359ecd3 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 60ef4ee913..5005493981 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 92377d3675..1072ae0edc 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 6bffaa4749..3d2aaa3f4a 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index c1be735155..0347a58b3d 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index fca7c7d270..d6d7a5d96a 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index b2714e2238..ba7801f875 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 8771fad6cc..82af5bfc06 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 30246d1e6b..09e5d52df1 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index cf436fd49e..9f0452a0bb 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index 22fcbfd3a4..d09975bba4 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 366295d65d..5b5f41e780 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index a897969732..88d9b4c26e 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 078351e108..94e4a6dbad 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index afa54fb36f..2a859090c2 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index ce164860e2..10db7be22e 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index bda4f92bbf..f566175c64 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index cd642510ac..d8cbc1dc98 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index a984bd5892..3d758c3dbf 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index dae85d3ec7..4db267b41b 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index bacb69268e..e960ce60b2 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index d51876cc42..63780f1471 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 039b987731..b05ac4ce74 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index f4705a9bbe..5c5ee06479 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 43cbf8d957..3a3f33f1ba 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index b66fdfa5b7..cdc72c61ca 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index fa3a222b3d..2cbd13491d 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index dbeb572b73..16f037e7a3 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index ea7dd8a25f..39a23c64c3 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 9b6ba8be1e..0a8dac8af7 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 05a638d00a..f45fd3a327 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index ab0358f507..644d965868 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 035f855cda..35f513722b 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 0dc9febe36..646c42d2fc 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index f401e611b8..3bd8fc22f4 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -5,13 +5,14 @@ # Translators: # Daisuke Deguchi , 2013 # plazmism , 2013 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -331,11 +332,11 @@ msgstr "スキャン中" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "ディレクトリ" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "ディレクトリ" #: templates/part.list.php:89 msgid "file" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 5d409f27d3..1697707c7f 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 01:30+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,14 +66,14 @@ msgstr "秘密鍵が有効ではありません。パスワードがownCloudシ #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "必要要件が満たされていません。" #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "" +msgstr "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index fe9abee051..cbaa036584 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index ecd759fa17..0e8c276c9d 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "パスワードが間違っています。再試行してください。" #: templates/authenticate.php:7 msgid "Password" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index fc091ddc6d..3567e09270 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index bbad08a0d4..38d02f59eb 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index bfce9e1f09..70c46e9f6f 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 109198c8aa..e348318434 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 1c6ad7980c..221e7c6f2a 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index d0b14f958c..92ee37d7ab 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 303fcd677d..ad855272a7 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index f8cf9787d6..07fcf180fd 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index fd479ccc6a..5e1063ce50 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index b6d4ad94ea..39d7e84efb 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index d9a9acc60e..3344597735 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 7bbaf8ea1e..b503e60899 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 3852e35cdd..ccd2eb15f2 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 95f7bc9cef..f3f643f6b8 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index b62084f9dc..7c2549c22b 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 9d0d98b553..cafe6df49f 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index e29ae97d1c..11a0595007 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 725feffbd3..45d1a0bebc 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 6753ddeb5c..534693bda4 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index d8817fc20b..0ba2086772 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 03bf579c30..1249006996 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 7fbf6e7fd6..115bc91189 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 8ed5c8adf9..9925e572a3 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 36751a7ac8..9ecfe6f66a 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 86c085f35e..b6cf0f5521 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 6957a1198f..fcf1f13277 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 24f6333436..5d897de495 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 255f0e1c0c..1ae71a4eb2 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index bd8aa19e85..ced4b60ab7 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index f3dc6cc956..00440d62a2 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 2579d733c7..3d9154e6a0 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 6a624898cd..ef208f9446 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index d1aed4cdc2..a133293998 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index d00c6c9441..d95c856894 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index e681ddb9ea..bd3d2a8057 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 5ed78e505b..293f9977af 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 9d3ff85a32..b32b2d7dc1 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 2a9f055000..757f87dbf5 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 97272ce39e..33cca82281 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index d5ccd62838..453444901d 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 8f295d2165..f7c5e944be 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 7cbe75ce39..43a8db0e09 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 3417170078..2343df9252 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index aa95fea16d..596483e55f 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index a9e4d2ec8c..758656e08b 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 6f23030ef6..bed4ca4c74 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index bc3d9d858e..bca01a3522 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index a6ceabe1d3..20e1facd96 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 7f054bdf76..53c62e5ef0 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 18459b9515..46d49390e7 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index db085abccd..6f451b38ac 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 5e89fe1105..48d0bd6964 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 80450d1dc5..65ea3e5ee7 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 861e90b760..b7737e0742 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 1d7c7dfe9c..ec42d05418 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 65bef29335..20f5ba9102 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 1735e5e54f..709e760841 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index d40e510f7f..b920068e4d 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 71578c58dd..05fa5b52ee 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 01aac0a0de..a1bbb26e01 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 8708880d54..1a145bdd1e 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 40c523fad6..da92206d6f 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index bd3a182e43..75a627f4b0 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 286ea0e351..2127be6f55 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 97e69d4029..f3591e6cab 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 14603d8a59..8a93883746 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 7a4c1c6d8e..48fbd829e9 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 80b895bb0e..c7ced65f92 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 883a0bee73..4906793df6 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 530c8472a7..238e566104 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 5601d3910d..f7ad449960 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 7eaa840df7..ad46e88ac9 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 9cdecfa8d3..502307411d 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 381c341fa1..c0804d72f3 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index bf6b93008b..316e436817 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 84d80ea73c..9494fd8e24 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index bee4958886..e657235c76 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index c5cf04fd9c..c646581f84 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 5993207230..31beb23c24 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 4de9f9e24f..4f123478be 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 8915dbefbc..f1f29d35a4 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index c970763e95..4eefc74663 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 4707eda8b0..e7afd67766 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 6ac6db9109..987c4c48f3 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 671cc24ddb..4335ef760f 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 852f46e490..98f4944754 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 3efeef5919..7c9c6f492c 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index dd0ec213f1..ada55c5b19 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 9c4ea96e23..cc5d0f9599 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 06e27b3263..af1f8908e6 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 3a7536c324..6f793b14b9 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 856d04abdc..a3d9cfdddd 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 1a948c6751..1074fc32e6 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index f97a47cb61..3d9b0749f7 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 24067d7f55..4f0b3c1474 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 2db0219c1a..6b0b49f3d6 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 6de459131d..edce1183bf 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index a712fe2764..d23aaa6a12 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 1e9d596fc1..77c05f3a4d 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 553552854d..4a135d631a 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 5b4113b7e0..6635d47a93 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 1212b256c6..0613d11951 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 12cbc34b1e..0ea48c16df 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 09d665b180..96949bef36 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index c652b72f72..3ad1d2ec2f 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 97323bdebb..32fc1f685e 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index da7f5f3f70..44ba867a18 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 74b207f412..0ee94df8f0 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 75cfebcc23..d3c2214034 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 25b08edad4..be863dfdf1 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 172ebb58c7..2819962d60 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 0597c95542..380f8e7496 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 8d518faff5..54ee0f147c 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: tuliouel\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 8062ecd277..3a05d32a1d 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 1fa4c8e34f..92f8c8f683 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index c9b0b36791..6e9c8b4b26 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index bb2ce25069..9a96ddf4df 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index e49839bd31..31e5f6f036 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index eeebc366c6..be007e7327 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 5355d48d20..be8101b103 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 1285194c6e..bf5e21058f 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 59af12d7ca..becb1d5f0e 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 00e7907a17..c9be3a0f93 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index ac67a7e802..ee178bb779 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index e7563b48db..a56b54b8a6 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index f96f055cda..0e9647a145 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 00b1f1ea4b..ebfa5ca137 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index e6687b7b78..5d9be67c4b 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 822f1e6b70..288fde9bc6 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: sergiu_sechel \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 9a9473b8b7..d8ee2eff04 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index a14ccad872..674d6afcb7 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: sergiu_sechel \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 702df644b7..6035debe0e 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index ea82af5005..0926ad7d7e 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 89c8a2fb1d..1aa65fb540 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: sergiu_sechel \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 0f042a5a7c..f021da73df 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 7f5a671579..bd63a40716 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 4374b4b3ec..daaf1ef931 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 5141dca8cb..8a978b34a5 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 2bb11139e0..5505d1b2ee 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 13079f15cd..28f21030d7 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index e9d86ffbb8..a6cfa9ae03 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 2f8fccfe41..3643563588 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: lord93 \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index cfef08b905..85111a9680 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index d5ce5665ce..4f160e10cc 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 96a6ad2395..4bcff68757 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 3387ec5460..96976e0b07 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 8c60617d18..8d24d53d93 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index dd0ad4c62d..79b983aba3 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 8a33e180e2..8545d7e072 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 3d5dc19cfb..76f1e7f46e 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 1d0cd2b0d8..a77859fde2 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 7d0b60a80b..9b4f2c3fb5 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index f93c4fd403..939ad33fd3 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index f91c75ec2c..b289c4c7a8 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index fa6c5f0460..de55dba0b4 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 1847f5e5f3..5ae6314841 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index ec8a1ac161..0712d64a8c 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 59255ac674..100cbdd0f6 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 1f200892de..de617b0119 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 725d87a526..0011d518d0 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index b5066379f8..cb1c1bae64 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index bf903d7e4c..42a085608b 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 71808d2191..47edf28098 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index c4ce351b6c..1ff6b2488e 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 3e4798d234..173c139c15 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 6f8b9d5004..45c303a247 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 578ac96e9e..6201121c51 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 564ddd0698..6ad80332b0 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 1c344423d8..dc6aa4d76e 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 6b4c5f88c8..32cfa5c29f 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index e7f2156ed0..68352aed5f 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 9b23b3e32b..e811cd3ee6 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index b41dc2aae5..4a98d453f9 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 13cd1fbb61..f1d8bc2eb8 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 6c1f5e70d8..da95f9d2ac 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 08b35dfb59..12477e378d 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 39cf56dca8..6fb85d3a60 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index b22931737c..ac6c2c0ab2 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index afa977d5e5..279ce960d4 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 8d86eab078..93ccb13263 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index fa0a5b178e..cd198675ad 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index a0c64b7553..fd296230f5 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 79d6ea4e9a..f2a8317cfd 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index fb65b5ff85..a0b235968b 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index bc77541a25..8ac56e0725 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 3cdf2d95e3..ba92ff3fee 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 7d66587912..73abc2fb2e 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 93ab69dee7..7b96dfe0e6 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index e40e5df64f..5988cf2808 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index f826a78b5e..ca5cf4a79f 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 3a4b82f783..11cc448994 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index e846660a16..f4d9b3eb4f 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 2f596b6480..b609084d45 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 5327c27b0f..916151e272 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 51797b34c4..66c0ec63b0 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index c6e759105a..3f98305c73 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 9eb5d232b6..f65f54ac38 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 5ccfee0a8d..2ad4df144c 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 81a376f45e..b204dbe270 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 147189421b..2a245bcda3 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index b8fe712e50..e27796e992 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 5aa24a9e2e..00a7191780 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 579186f3ad..7d30cf795e 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index aa729894da..aec26f7257 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index ea94ffb4ff..fe0b18eb61 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index f66325453e..ab6008046f 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 54c2a7f7bc..e8e8b72fd7 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index bd263a6ad3..ec1c43f92f 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 9961050a11..1668332530 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 2aee55f17f..affb971fde 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index ec2944d3ae..7afc70cfec 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 2033466508..8aaa4b52cc 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 9f5b476c52..7c7b434f87 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 8bf2e0494b..0e6c1f8065 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0a50c047f0..845a43e6e7 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index b2b31e436c..f19c788f74 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index a0e346b5df..f72585b196 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 2aa26d1cdc..74fea51fc5 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b4761de32e..f6968d359b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 0cc2827ab2..37abe263fd 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a83ad13f90..87f39ec78c 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index d57c3f2759..2b540c4a62 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 71d1e39fc1..15faaea821 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 5bc2b6fb20..b792f2466c 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 903631b5c4..be4fc70c4f 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 1a3bc0fd88..b87d9e418b 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index ddeac9187c..ab00a47cb7 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index d1a70558e2..04e4d9d42d 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 65d010ecd0..991bd6e2b3 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index e519d00957..9d3b8818a7 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index c09220ca1b..0374be1c25 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index b8964bf1ee..18b99dd73c 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 2fa7e4acb3..c4a2949946 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 089cf976a7..b06cbc4d33 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index a6cb8de3aa..1c0dfbde28 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 71d9c55f6d..fe2af81695 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 3a1c764199..0c2b62d3ca 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 4598643c03..ea7cc7040f 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 7f1ad87eff..d13b49aeea 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 8789cf6a51..45dc111fea 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index f190de5356..6721653194 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 7e9b2173e4..79e644aff4 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 922527f9ff..7de9d97bf8 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 0b28147bb1..3cf250e0bb 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 6ae4b21f7e..e5f829881b 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 8523965533..fd7245fbd1 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index fee5e99e25..42883425f1 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 6d52519a3d..2fb8227ff6 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 923f0a2196..cbec3cbd9e 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 89d26ea21c..4496bd4339 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index ff29b06932..961d1013f2 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 3fec5f21cd..f8f564d9b3 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 2353c969af..d6b015ad40 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 00ddba48a6..86828780be 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 67b92d01e5..eb65e77e73 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index d170a2d7b1..ee3e4deb2f 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 04d5ddbf57..ac059352ce 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 9d85b27484..033d0ad941 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 4f3be0f604..6850b1b4d3 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 27241307c5..214b6d2a17 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 511a2086b1..fdac69996c 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 6555e786e6..ffbee643ca 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 101c82684a..5110a664be 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 26f8ad74c7..7929e21812 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 68ad24209f..6bf303d4cc 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 86335d5284..394f1f867c 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 26534293e6..ecb5c50461 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 2d72c5ee9d..6fe27e2799 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index ce3ce4e223..4b81646067 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index cc7a65466a..a2dc4f2b37 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 14b99c1b69..c949e1cb87 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index c5ad60737e..5a375c540f 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index b8868ffd12..c7610fe8ba 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index c06e0c8b0f..fe11ee0d21 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index ee4d4827c4..3770f35466 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index fdea7abff7..3b07d03b88 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index b18431a673..0723e201b6 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index eefb73aee9..f6b9ee99a9 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 31d527a7bb..7906cc95d0 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 931c7712c4..9f57a80b51 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index ed66d1b00e..cd0a8f8c0a 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index c2210aa7c8..f92c66588b 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 51f4ca57b8..709184047f 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: m13253 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 734cbf0a39..ddb3087ba9 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index ae3b18cda6..9a51824f98 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index f5cdbf33d3..87a17db673 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 79c7447614..167f2d6913 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index cb81102bab..ac7f86c685 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index e5572ac95e..524be63bad 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index ca9f0d990d..b36ee4e47f 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 95da66d92d..e9e26cd9eb 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index be0f6347fc..d9386437c3 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index fb1e9ca6bb..d6227f23c8 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index af35f7bfa9..3dbb6c6e23 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index f87ebdb7c8..4200dcb9cd 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index f98e961b83..b75b412bee 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index d7ae456244..cab125c574 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 649408e244..6b453809f2 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 8b5e1cce59..6a03a7cb05 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-05 23:24+0000\n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 8e7e29ac1a..698c8040bf 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# chenanyeh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,27 +20,27 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "清除映射失敗" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "刪除伺服器設定時失敗" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "設定有效且連線可建立" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "設定有效但連線無法建立。請檢查伺服器的設定與認證資料。" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "設定無效。更多細節請參閱ownCloud的記錄檔。" #: js/settings.js:66 msgid "Deletion failed" @@ -47,19 +48,19 @@ msgstr "移除失敗" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "要使用最近一次的伺服器設定嗎?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "維持設定嗎?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "無法新增伺服器設定" #: js/settings.js:111 msgid "mappings cleared" -msgstr "" +msgstr "映射已清除" #: js/settings.js:112 msgid "Success" @@ -71,40 +72,40 @@ msgstr "錯誤" #: js/settings.js:141 msgid "Connection test succeeded" -msgstr "" +msgstr "連線測試成功" #: js/settings.js:146 msgid "Connection test failed" -msgstr "" +msgstr "連線測試失敗" #: js/settings.js:156 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "您真的確定要刪除現在的伺服器設定嗎?" #: js/settings.js:157 msgid "Confirm Deletion" -msgstr "" +msgstr "確認已刪除" #: templates/settings.php:9 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "警告: 應用程式user_ldap和user_webdavauth互不相容。可能會造成無法預期的結果。請要求您的系統管理員將兩者其中之一停用。" #: templates/settings.php:12 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作。請要求您的系統管理員安裝模組。" #: templates/settings.php:16 msgid "Server configuration" -msgstr "" +msgstr "伺服器設定" #: templates/settings.php:32 msgid "Add Server Configuration" -msgstr "" +msgstr "新增伺服器設定" #: templates/settings.php:37 msgid "Host" @@ -113,7 +114,7 @@ msgstr "主機" #: templates/settings.php:39 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "若您不需要SSL加密傳輸則可忽略通訊協定。若非如此請從ldaps://開始" #: templates/settings.php:40 msgid "Base DN" @@ -121,11 +122,11 @@ msgstr "" #: templates/settings.php:41 msgid "One Base DN per line" -msgstr "" +msgstr "一行一個Base DN" #: templates/settings.php:42 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "您可以在進階標籤頁裡面指定使用者及群組的Base DN" #: templates/settings.php:44 msgid "User DN" @@ -136,7 +137,7 @@ msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "客戶端使用者的DN與特定字詞的連結需要完善,例如:uid=agent,dc=example,dc=com。若是匿名連接,則將DN與密碼欄位留白。" #: templates/settings.php:47 msgid "Password" @@ -144,59 +145,59 @@ msgstr "密碼" #: templates/settings.php:50 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "匿名連接時請將DN與密碼欄位留白" #: templates/settings.php:51 msgid "User Login Filter" -msgstr "" +msgstr "使用者登入過濾器" #: templates/settings.php:54 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "試圖登入時會定義要套用的篩選器。登入過程中%%uid會取代使用者名稱。" #: templates/settings.php:55 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "請使用 %%uid placeholder,例如:\"uid=%%uid\"" #: templates/settings.php:56 msgid "User List Filter" -msgstr "" +msgstr "使用者名單篩選器" #: templates/settings.php:59 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "檢索使用者時定義要套用的篩選器" #: templates/settings.php:60 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "請勿使用任何placeholder,例如:\"objectClass=person\"。" #: templates/settings.php:61 msgid "Group Filter" -msgstr "" +msgstr "群組篩選器" #: templates/settings.php:64 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "檢索群組時,定義要套用的篩選器" #: templates/settings.php:65 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "請勿使用任何placeholder,例如:\"objectClass=posixGroup\"。" #: templates/settings.php:69 msgid "Connection Settings" -msgstr "" +msgstr "連線設定" #: templates/settings.php:71 msgid "Configuration Active" -msgstr "" +msgstr "設定為主動模式" #: templates/settings.php:71 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "沒有被勾選時,此設定會被略過。" #: templates/settings.php:72 msgid "Port" @@ -204,25 +205,25 @@ msgstr "連接阜" #: templates/settings.php:73 msgid "Backup (Replica) Host" -msgstr "" +msgstr "備用主機" #: templates/settings.php:73 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "請給定一個可選的備用主機。必須是LDAP/AD中央伺服器的複本。" #: templates/settings.php:74 msgid "Backup (Replica) Port" -msgstr "" +msgstr "備用(複本)連接阜" #: templates/settings.php:75 msgid "Disable Main Server" -msgstr "" +msgstr "停用主伺服器" #: templates/settings.php:75 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "當開關打開時,ownCloud將只會連接複本伺服器。" #: templates/settings.php:76 msgid "Use TLS" @@ -234,7 +235,7 @@ msgstr "" #: templates/settings.php:77 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "不區分大小寫的LDAP伺服器(Windows)" #: templates/settings.php:78 msgid "Turn off SSL certificate validation." @@ -244,51 +245,51 @@ msgstr "關閉 SSL 憑證驗證" msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "若連線只有在此選項開啟時運作,請匯入LDAP伺服器的SSL認證到您的ownCloud伺服器。" #: templates/settings.php:78 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "不推薦使用,僅供測試用途。" #: templates/settings.php:79 msgid "Cache Time-To-Live" -msgstr "" +msgstr "快取的存活時間" #: templates/settings.php:79 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "以秒為單位。更變後會清空快取。" #: templates/settings.php:81 msgid "Directory Settings" -msgstr "" +msgstr "目錄選項" #: templates/settings.php:83 msgid "User Display Name Field" -msgstr "" +msgstr "使用者名稱欄位" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "用於產生ownCloud名稱" #: templates/settings.php:84 msgid "Base User Tree" -msgstr "" +msgstr "Base使用者數" #: templates/settings.php:84 msgid "One User Base DN per line" -msgstr "" +msgstr "一行一個使用者Base DN" #: templates/settings.php:85 msgid "User Search Attributes" -msgstr "" +msgstr "使用者搜索屬性" #: templates/settings.php:85 templates/settings.php:88 msgid "Optional; one attribute per line" -msgstr "" +msgstr "可選的; 一行一項屬性" #: templates/settings.php:86 msgid "Group Display Name Field" -msgstr "" +msgstr "群組顯示名稱欄位" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." @@ -296,53 +297,53 @@ msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" -msgstr "" +msgstr "Base群組樹" #: templates/settings.php:87 msgid "One Group Base DN per line" -msgstr "" +msgstr "一行一個群組Base DN" #: templates/settings.php:88 msgid "Group Search Attributes" -msgstr "" +msgstr "群組搜索屬性" #: templates/settings.php:89 msgid "Group-Member association" -msgstr "" +msgstr "群組成員的關係" #: templates/settings.php:91 msgid "Special Attributes" -msgstr "" +msgstr "特殊屬性" #: templates/settings.php:93 msgid "Quota Field" -msgstr "" +msgstr "配額欄位" #: templates/settings.php:94 msgid "Quota Default" -msgstr "" +msgstr "預設配額" #: templates/settings.php:94 msgid "in bytes" -msgstr "" +msgstr "以位元組為單位" #: templates/settings.php:95 msgid "Email Field" -msgstr "" +msgstr "電郵欄位" #: templates/settings.php:96 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "使用者家目錄的命名規則" #: templates/settings.php:96 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "使用者名稱請留白(預設)。若不留白請指定一個LDAP/AD屬性。" #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "內部使用者名稱" #: templates/settings.php:102 msgid "" @@ -412,7 +413,7 @@ msgstr "" #: templates/settings.php:111 msgid "Test Configuration" -msgstr "" +msgstr "測試此設定" #: templates/settings.php:111 msgid "Help" diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index e0090996f2..3ab85bceea 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -42,6 +42,7 @@ "Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "Module 'fileinfo' missing" => "ماژول 'fileinfo' از کار افتاده", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید.", +"Locale not working" => "زبان محلی کار نمی کند.", "This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "این سرور ownCloud نمی تواند سیستم محلی را بر روی %s تنظیم کند.این به این معنی ست که ممکن است با کاراکترهای خاصی در نام فایل ها مشکل داشته باشد.ما اکیداً نصب کردن بسته های لازم را بر روی سیستم خودتان برای پشتیبانی %s توصیه می کنیم.", "Internet connection not working" => "اتصال اینترنت کار نمی کند", "This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "این سرور OwnCloud ارتباط اینترنتی ندارد.این بدین معناست که بعضی از خصوصیات نظیر خارج کردن منبع ذخیره ی خارجی، اطلاعات در مورد بروزرسانی ها یا نصب برنامه های نوع 3ام کار نمی کنند.دسترسی به فایل ها از راه دور و ارسال آگاه سازی ایمیل ها ممکن است همچنان کار نکنند.اگرشما همه ی خصوصیات OwnCloud می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید.", diff --git a/settings/l10n/hi.php b/settings/l10n/hi.php index a9b508bcb2..eb3fcc251f 100644 --- a/settings/l10n/hi.php +++ b/settings/l10n/hi.php @@ -1,4 +1,6 @@ "त्रुटि", +"Update" => "अद्यतन", "Password" => "पासवर्ड", "New password" => "नया पासवर्ड", "Username" => "प्रयोक्ता का नाम" From 3cb4a72960b899ab492ec5f9f6eba9a90370d310 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 8 Jul 2013 02:09:41 +0200 Subject: [PATCH 48/49] [tx-robot] updated from transifex --- apps/files/l10n/el.php | 2 ++ apps/files_encryption/l10n/de_DE.php | 4 +++ apps/files_encryption/l10n/es.php | 6 ++-- apps/files_external/l10n/es.php | 12 ++++---- apps/files_sharing/l10n/de_DE.php | 1 + apps/files_sharing/l10n/fa.php | 1 + apps/files_trashbin/l10n/es.php | 4 +-- apps/files_versions/l10n/fa.php | 1 + apps/user_ldap/l10n/de_DE.php | 7 +++++ l10n/af_ZA/core.po | 4 +-- l10n/af_ZA/lib.po | 4 +-- l10n/ar/core.po | 4 +-- l10n/ar/files.po | 4 +-- l10n/ar/files_external.po | 4 +-- l10n/ar/files_sharing.po | 4 +-- l10n/ar/files_trashbin.po | 4 +-- l10n/ar/lib.po | 4 +-- l10n/ar/settings.po | 4 +-- l10n/ar/user_ldap.po | 4 +-- l10n/bg_BG/core.po | 4 +-- l10n/bg_BG/files.po | 4 +-- l10n/bg_BG/files_external.po | 4 +-- l10n/bg_BG/files_sharing.po | 4 +-- l10n/bg_BG/files_trashbin.po | 4 +-- l10n/bg_BG/lib.po | 4 +-- l10n/bg_BG/settings.po | 4 +-- l10n/bg_BG/user_ldap.po | 4 +-- l10n/bn_BD/core.po | 4 +-- l10n/bn_BD/files.po | 4 +-- l10n/bn_BD/files_external.po | 4 +-- l10n/bn_BD/files_sharing.po | 4 +-- l10n/bn_BD/files_trashbin.po | 4 +-- l10n/bn_BD/lib.po | 4 +-- l10n/bn_BD/settings.po | 4 +-- l10n/bn_BD/user_ldap.po | 4 +-- l10n/bs/core.po | 4 +-- l10n/bs/files.po | 4 +-- l10n/bs/files_trashbin.po | 4 +-- l10n/ca/core.po | 4 +-- l10n/ca/files.po | 4 +-- l10n/ca/files_external.po | 4 +-- l10n/ca/files_sharing.po | 4 +-- l10n/ca/files_trashbin.po | 4 +-- l10n/ca/lib.po | 4 +-- l10n/ca/settings.po | 4 +-- l10n/ca/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 4 +-- l10n/cs_CZ/files.po | 4 +-- l10n/cs_CZ/files_external.po | 4 +-- l10n/cs_CZ/files_sharing.po | 4 +-- l10n/cs_CZ/files_trashbin.po | 4 +-- l10n/cs_CZ/lib.po | 4 +-- l10n/cs_CZ/settings.po | 4 +-- l10n/cs_CZ/user_ldap.po | 4 +-- l10n/cy_GB/core.po | 4 +-- l10n/cy_GB/files.po | 4 +-- l10n/cy_GB/files_external.po | 4 +-- l10n/cy_GB/files_sharing.po | 4 +-- l10n/cy_GB/files_trashbin.po | 4 +-- l10n/cy_GB/lib.po | 4 +-- l10n/cy_GB/settings.po | 4 +-- l10n/cy_GB/user_ldap.po | 4 +-- l10n/da/core.po | 4 +-- l10n/da/files.po | 4 +-- l10n/da/files_external.po | 4 +-- l10n/da/files_sharing.po | 4 +-- l10n/da/files_trashbin.po | 4 +-- l10n/da/lib.po | 4 +-- l10n/da/settings.po | 4 +-- l10n/da/user_ldap.po | 4 +-- l10n/de/core.po | 4 +-- l10n/de/files.po | 4 +-- l10n/de/files_external.po | 4 +-- l10n/de/files_sharing.po | 4 +-- l10n/de/files_trashbin.po | 4 +-- l10n/de/lib.po | 4 +-- l10n/de/settings.po | 4 +-- l10n/de/user_ldap.po | 4 +-- l10n/de_DE/core.po | 4 +-- l10n/de_DE/files.po | 4 +-- l10n/de_DE/files_encryption.po | 14 ++++----- l10n/de_DE/files_external.po | 4 +-- l10n/de_DE/files_sharing.po | 9 +++--- l10n/de_DE/files_trashbin.po | 4 +-- l10n/de_DE/lib.po | 4 +-- l10n/de_DE/settings.po | 4 +-- l10n/de_DE/user_ldap.po | 21 +++++++------- l10n/el/core.po | 4 +-- l10n/el/files.po | 10 +++---- l10n/el/files_external.po | 4 +-- l10n/el/files_sharing.po | 4 +-- l10n/el/files_trashbin.po | 4 +-- l10n/el/lib.po | 4 +-- l10n/el/settings.po | 4 +-- l10n/el/user_ldap.po | 4 +-- l10n/en@pirate/files.po | 4 +-- l10n/en@pirate/files_sharing.po | 4 +-- l10n/eo/core.po | 4 +-- l10n/eo/files.po | 4 +-- l10n/eo/files_external.po | 4 +-- l10n/eo/files_sharing.po | 4 +-- l10n/eo/files_trashbin.po | 4 +-- l10n/eo/lib.po | 4 +-- l10n/eo/settings.po | 4 +-- l10n/eo/user_ldap.po | 4 +-- l10n/es/core.po | 4 +-- l10n/es/files.po | 4 +-- l10n/es/files_encryption.po | 10 +++---- l10n/es/files_external.po | 19 ++++++------ l10n/es/files_sharing.po | 4 +-- l10n/es/files_trashbin.po | 11 +++---- l10n/es/files_versions.po | 6 ++-- l10n/es/lib.po | 4 +-- l10n/es/settings.po | 4 +-- l10n/es/user_ldap.po | 4 +-- l10n/es/user_webdavauth.po | 8 +++--- l10n/es_AR/core.po | 4 +-- l10n/es_AR/files.po | 4 +-- l10n/es_AR/files_external.po | 4 +-- l10n/es_AR/files_sharing.po | 4 +-- l10n/es_AR/files_trashbin.po | 4 +-- l10n/es_AR/lib.po | 4 +-- l10n/es_AR/settings.po | 4 +-- l10n/es_AR/user_ldap.po | 4 +-- l10n/et_EE/core.po | 4 +-- l10n/et_EE/files.po | 4 +-- l10n/et_EE/files_external.po | 4 +-- l10n/et_EE/files_sharing.po | 4 +-- l10n/et_EE/files_trashbin.po | 4 +-- l10n/et_EE/lib.po | 4 +-- l10n/et_EE/settings.po | 4 +-- l10n/et_EE/user_ldap.po | 4 +-- l10n/eu/core.po | 4 +-- l10n/eu/files.po | 4 +-- l10n/eu/files_external.po | 4 +-- l10n/eu/files_sharing.po | 4 +-- l10n/eu/files_trashbin.po | 4 +-- l10n/eu/lib.po | 4 +-- l10n/eu/settings.po | 4 +-- l10n/eu/user_ldap.po | 4 +-- l10n/fa/core.po | 4 +-- l10n/fa/files.po | 4 +-- l10n/fa/files_external.po | 4 +-- l10n/fa/files_sharing.po | 9 +++--- l10n/fa/files_trashbin.po | 4 +-- l10n/fa/files_versions.po | 9 +++--- l10n/fa/lib.po | 43 ++++++++++++++-------------- l10n/fa/settings.po | 14 ++++----- l10n/fa/user_ldap.po | 4 +-- l10n/fi_FI/core.po | 4 +-- l10n/fi_FI/files.po | 4 +-- l10n/fi_FI/files_external.po | 4 +-- l10n/fi_FI/files_sharing.po | 4 +-- l10n/fi_FI/files_trashbin.po | 4 +-- l10n/fi_FI/lib.po | 4 +-- l10n/fi_FI/settings.po | 4 +-- l10n/fi_FI/user_ldap.po | 4 +-- l10n/fr/core.po | 4 +-- l10n/fr/files.po | 4 +-- l10n/fr/files_external.po | 4 +-- l10n/fr/files_sharing.po | 4 +-- l10n/fr/files_trashbin.po | 4 +-- l10n/fr/lib.po | 4 +-- l10n/fr/settings.po | 4 +-- l10n/fr/user_ldap.po | 4 +-- l10n/gl/core.po | 4 +-- l10n/gl/files.po | 4 +-- l10n/gl/files_external.po | 4 +-- l10n/gl/files_sharing.po | 4 +-- l10n/gl/files_trashbin.po | 4 +-- l10n/gl/lib.po | 4 +-- l10n/gl/settings.po | 4 +-- l10n/gl/user_ldap.po | 4 +-- l10n/he/core.po | 4 +-- l10n/he/files.po | 4 +-- l10n/he/files_external.po | 4 +-- l10n/he/files_sharing.po | 4 +-- l10n/he/files_trashbin.po | 4 +-- l10n/he/lib.po | 4 +-- l10n/he/settings.po | 4 +-- l10n/he/user_ldap.po | 4 +-- l10n/hi/core.po | 4 +-- l10n/hi/files.po | 4 +-- l10n/hi/files_trashbin.po | 4 +-- l10n/hi/lib.po | 4 +-- l10n/hi/settings.po | 4 +-- l10n/hi/user_ldap.po | 4 +-- l10n/hr/core.po | 4 +-- l10n/hr/files.po | 4 +-- l10n/hr/files_external.po | 4 +-- l10n/hr/files_sharing.po | 4 +-- l10n/hr/files_trashbin.po | 4 +-- l10n/hr/lib.po | 4 +-- l10n/hr/settings.po | 4 +-- l10n/hr/user_ldap.po | 4 +-- l10n/hu_HU/core.po | 4 +-- l10n/hu_HU/files.po | 4 +-- l10n/hu_HU/files_external.po | 4 +-- l10n/hu_HU/files_sharing.po | 4 +-- l10n/hu_HU/files_trashbin.po | 4 +-- l10n/hu_HU/lib.po | 4 +-- l10n/hu_HU/settings.po | 4 +-- l10n/hu_HU/user_ldap.po | 4 +-- l10n/hy/files.po | 4 +-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +-- l10n/ia/core.po | 4 +-- l10n/ia/files.po | 4 +-- l10n/ia/files_external.po | 4 +-- l10n/ia/files_sharing.po | 4 +-- l10n/ia/files_trashbin.po | 4 +-- l10n/ia/lib.po | 4 +-- l10n/ia/settings.po | 4 +-- l10n/ia/user_ldap.po | 4 +-- l10n/id/core.po | 4 +-- l10n/id/files.po | 4 +-- l10n/id/files_external.po | 4 +-- l10n/id/files_sharing.po | 4 +-- l10n/id/files_trashbin.po | 4 +-- l10n/id/lib.po | 4 +-- l10n/id/settings.po | 4 +-- l10n/id/user_ldap.po | 4 +-- l10n/is/core.po | 4 +-- l10n/is/files.po | 4 +-- l10n/is/files_external.po | 4 +-- l10n/is/files_sharing.po | 4 +-- l10n/is/files_trashbin.po | 4 +-- l10n/is/lib.po | 4 +-- l10n/is/settings.po | 4 +-- l10n/is/user_ldap.po | 4 +-- l10n/it/core.po | 4 +-- l10n/it/files.po | 4 +-- l10n/it/files_external.po | 4 +-- l10n/it/files_sharing.po | 4 +-- l10n/it/files_trashbin.po | 4 +-- l10n/it/lib.po | 4 +-- l10n/it/settings.po | 4 +-- l10n/it/user_ldap.po | 4 +-- l10n/ja_JP/core.po | 4 +-- l10n/ja_JP/files.po | 4 +-- l10n/ja_JP/files_external.po | 4 +-- l10n/ja_JP/files_sharing.po | 4 +-- l10n/ja_JP/files_trashbin.po | 4 +-- l10n/ja_JP/lib.po | 4 +-- l10n/ja_JP/settings.po | 4 +-- l10n/ja_JP/user_ldap.po | 4 +-- l10n/ka/files.po | 4 +-- l10n/ka/files_sharing.po | 4 +-- l10n/ka_GE/core.po | 4 +-- l10n/ka_GE/files.po | 4 +-- l10n/ka_GE/files_external.po | 4 +-- l10n/ka_GE/files_sharing.po | 4 +-- l10n/ka_GE/files_trashbin.po | 4 +-- l10n/ka_GE/lib.po | 4 +-- l10n/ka_GE/settings.po | 4 +-- l10n/ka_GE/user_ldap.po | 4 +-- l10n/ko/core.po | 4 +-- l10n/ko/files.po | 4 +-- l10n/ko/files_external.po | 4 +-- l10n/ko/files_sharing.po | 4 +-- l10n/ko/files_trashbin.po | 4 +-- l10n/ko/lib.po | 4 +-- l10n/ko/settings.po | 4 +-- l10n/ko/user_ldap.po | 4 +-- l10n/ku_IQ/core.po | 4 +-- l10n/ku_IQ/files.po | 4 +-- l10n/ku_IQ/files_sharing.po | 4 +-- l10n/ku_IQ/files_trashbin.po | 4 +-- l10n/ku_IQ/lib.po | 4 +-- l10n/ku_IQ/settings.po | 4 +-- l10n/ku_IQ/user_ldap.po | 4 +-- l10n/lb/core.po | 4 +-- l10n/lb/files.po | 4 +-- l10n/lb/files_external.po | 4 +-- l10n/lb/files_sharing.po | 4 +-- l10n/lb/files_trashbin.po | 4 +-- l10n/lb/lib.po | 4 +-- l10n/lb/settings.po | 4 +-- l10n/lb/user_ldap.po | 4 +-- l10n/lt_LT/core.po | 4 +-- l10n/lt_LT/files.po | 4 +-- l10n/lt_LT/files_external.po | 4 +-- l10n/lt_LT/files_sharing.po | 4 +-- l10n/lt_LT/files_trashbin.po | 4 +-- l10n/lt_LT/lib.po | 4 +-- l10n/lt_LT/settings.po | 4 +-- l10n/lt_LT/user_ldap.po | 4 +-- l10n/lv/core.po | 4 +-- l10n/lv/files.po | 4 +-- l10n/lv/files_external.po | 4 +-- l10n/lv/files_sharing.po | 4 +-- l10n/lv/files_trashbin.po | 4 +-- l10n/lv/lib.po | 4 +-- l10n/lv/settings.po | 4 +-- l10n/lv/user_ldap.po | 4 +-- l10n/mk/core.po | 4 +-- l10n/mk/files.po | 4 +-- l10n/mk/files_external.po | 4 +-- l10n/mk/files_sharing.po | 4 +-- l10n/mk/files_trashbin.po | 4 +-- l10n/mk/lib.po | 4 +-- l10n/mk/settings.po | 4 +-- l10n/mk/user_ldap.po | 4 +-- l10n/ms_MY/core.po | 4 +-- l10n/ms_MY/files.po | 4 +-- l10n/ms_MY/files_external.po | 4 +-- l10n/ms_MY/files_sharing.po | 4 +-- l10n/ms_MY/files_trashbin.po | 4 +-- l10n/ms_MY/lib.po | 4 +-- l10n/ms_MY/settings.po | 4 +-- l10n/ms_MY/user_ldap.po | 4 +-- l10n/my_MM/core.po | 4 +-- l10n/my_MM/files.po | 4 +-- l10n/my_MM/files_sharing.po | 4 +-- l10n/my_MM/lib.po | 4 +-- l10n/nb_NO/core.po | 4 +-- l10n/nb_NO/files.po | 4 +-- l10n/nb_NO/files_external.po | 4 +-- l10n/nb_NO/files_sharing.po | 4 +-- l10n/nb_NO/files_trashbin.po | 4 +-- l10n/nb_NO/lib.po | 4 +-- l10n/nb_NO/settings.po | 4 +-- l10n/nb_NO/user_ldap.po | 4 +-- l10n/nl/core.po | 4 +-- l10n/nl/files.po | 4 +-- l10n/nl/files_external.po | 4 +-- l10n/nl/files_sharing.po | 4 +-- l10n/nl/files_trashbin.po | 4 +-- l10n/nl/lib.po | 4 +-- l10n/nl/settings.po | 4 +-- l10n/nl/user_ldap.po | 4 +-- l10n/nn_NO/core.po | 4 +-- l10n/nn_NO/files.po | 4 +-- l10n/nn_NO/files_external.po | 4 +-- l10n/nn_NO/files_sharing.po | 4 +-- l10n/nn_NO/files_trashbin.po | 4 +-- l10n/nn_NO/lib.po | 4 +-- l10n/nn_NO/settings.po | 4 +-- l10n/nn_NO/user_ldap.po | 4 +-- l10n/oc/core.po | 4 +-- l10n/oc/files.po | 4 +-- l10n/oc/files_external.po | 4 +-- l10n/oc/files_sharing.po | 4 +-- l10n/oc/files_trashbin.po | 4 +-- l10n/oc/lib.po | 4 +-- l10n/oc/settings.po | 4 +-- l10n/oc/user_ldap.po | 4 +-- l10n/pl/core.po | 4 +-- l10n/pl/files.po | 4 +-- l10n/pl/files_external.po | 4 +-- l10n/pl/files_sharing.po | 4 +-- l10n/pl/files_trashbin.po | 4 +-- l10n/pl/lib.po | 4 +-- l10n/pl/settings.po | 4 +-- l10n/pl/user_ldap.po | 4 +-- l10n/pt_BR/core.po | 4 +-- l10n/pt_BR/files.po | 4 +-- l10n/pt_BR/files_external.po | 4 +-- l10n/pt_BR/files_sharing.po | 4 +-- l10n/pt_BR/files_trashbin.po | 4 +-- l10n/pt_BR/lib.po | 4 +-- l10n/pt_BR/settings.po | 4 +-- l10n/pt_BR/user_ldap.po | 4 +-- l10n/pt_PT/core.po | 4 +-- l10n/pt_PT/files.po | 4 +-- l10n/pt_PT/files_external.po | 4 +-- l10n/pt_PT/files_sharing.po | 4 +-- l10n/pt_PT/files_trashbin.po | 4 +-- l10n/pt_PT/lib.po | 4 +-- l10n/pt_PT/settings.po | 4 +-- l10n/pt_PT/user_ldap.po | 4 +-- l10n/ro/core.po | 4 +-- l10n/ro/files.po | 4 +-- l10n/ro/files_external.po | 4 +-- l10n/ro/files_sharing.po | 4 +-- l10n/ro/files_trashbin.po | 4 +-- l10n/ro/lib.po | 4 +-- l10n/ro/settings.po | 4 +-- l10n/ro/user_ldap.po | 4 +-- l10n/ru/core.po | 4 +-- l10n/ru/files.po | 4 +-- l10n/ru/files_external.po | 4 +-- l10n/ru/files_sharing.po | 4 +-- l10n/ru/files_trashbin.po | 4 +-- l10n/ru/lib.po | 4 +-- l10n/ru/settings.po | 4 +-- l10n/ru/user_ldap.po | 4 +-- l10n/si_LK/core.po | 4 +-- l10n/si_LK/files.po | 4 +-- l10n/si_LK/files_external.po | 4 +-- l10n/si_LK/files_sharing.po | 4 +-- l10n/si_LK/files_trashbin.po | 4 +-- l10n/si_LK/lib.po | 4 +-- l10n/si_LK/settings.po | 4 +-- l10n/si_LK/user_ldap.po | 4 +-- l10n/sk_SK/core.po | 4 +-- l10n/sk_SK/files.po | 4 +-- l10n/sk_SK/files_external.po | 4 +-- l10n/sk_SK/files_sharing.po | 4 +-- l10n/sk_SK/files_trashbin.po | 4 +-- l10n/sk_SK/lib.po | 4 +-- l10n/sk_SK/settings.po | 4 +-- l10n/sk_SK/user_ldap.po | 4 +-- l10n/sl/core.po | 4 +-- l10n/sl/files.po | 4 +-- l10n/sl/files_external.po | 4 +-- l10n/sl/files_sharing.po | 4 +-- l10n/sl/files_trashbin.po | 4 +-- l10n/sl/lib.po | 4 +-- l10n/sl/settings.po | 4 +-- l10n/sl/user_ldap.po | 4 +-- l10n/sq/core.po | 4 +-- l10n/sq/files.po | 4 +-- l10n/sq/files_external.po | 4 +-- l10n/sq/files_sharing.po | 4 +-- l10n/sq/files_trashbin.po | 4 +-- l10n/sq/lib.po | 4 +-- l10n/sq/settings.po | 4 +-- l10n/sq/user_ldap.po | 4 +-- l10n/sr/core.po | 4 +-- l10n/sr/files.po | 4 +-- l10n/sr/files_external.po | 4 +-- l10n/sr/files_sharing.po | 4 +-- l10n/sr/files_trashbin.po | 4 +-- l10n/sr/lib.po | 4 +-- l10n/sr/settings.po | 4 +-- l10n/sr/user_ldap.po | 4 +-- l10n/sr@latin/core.po | 4 +-- l10n/sr@latin/files.po | 4 +-- l10n/sr@latin/files_external.po | 4 +-- l10n/sr@latin/files_sharing.po | 4 +-- l10n/sr@latin/files_trashbin.po | 4 +-- l10n/sr@latin/lib.po | 4 +-- l10n/sr@latin/settings.po | 4 +-- l10n/sv/core.po | 4 +-- l10n/sv/files.po | 4 +-- l10n/sv/files_external.po | 4 +-- l10n/sv/files_sharing.po | 4 +-- l10n/sv/files_trashbin.po | 4 +-- l10n/sv/lib.po | 4 +-- l10n/sv/settings.po | 4 +-- l10n/sv/user_ldap.po | 4 +-- l10n/ta_LK/core.po | 4 +-- l10n/ta_LK/files.po | 4 +-- l10n/ta_LK/files_external.po | 4 +-- l10n/ta_LK/files_sharing.po | 4 +-- l10n/ta_LK/files_trashbin.po | 4 +-- l10n/ta_LK/lib.po | 4 +-- l10n/ta_LK/settings.po | 4 +-- l10n/ta_LK/user_ldap.po | 4 +-- l10n/te/core.po | 4 +-- l10n/te/files.po | 4 +-- l10n/te/files_external.po | 4 +-- l10n/te/files_trashbin.po | 4 +-- l10n/te/lib.po | 4 +-- l10n/te/settings.po | 4 +-- l10n/te/user_ldap.po | 4 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +-- l10n/th_TH/files.po | 4 +-- l10n/th_TH/files_external.po | 4 +-- l10n/th_TH/files_sharing.po | 4 +-- l10n/th_TH/files_trashbin.po | 4 +-- l10n/th_TH/lib.po | 4 +-- l10n/th_TH/settings.po | 4 +-- l10n/th_TH/user_ldap.po | 4 +-- l10n/tr/core.po | 4 +-- l10n/tr/files.po | 4 +-- l10n/tr/files_external.po | 4 +-- l10n/tr/files_sharing.po | 4 +-- l10n/tr/files_trashbin.po | 4 +-- l10n/tr/lib.po | 4 +-- l10n/tr/settings.po | 4 +-- l10n/tr/user_ldap.po | 4 +-- l10n/ug/core.po | 4 +-- l10n/ug/files.po | 4 +-- l10n/ug/files_external.po | 4 +-- l10n/ug/files_sharing.po | 4 +-- l10n/ug/files_trashbin.po | 4 +-- l10n/ug/lib.po | 4 +-- l10n/ug/settings.po | 4 +-- l10n/ug/user_ldap.po | 4 +-- l10n/uk/core.po | 4 +-- l10n/uk/files.po | 4 +-- l10n/uk/files_external.po | 4 +-- l10n/uk/files_sharing.po | 4 +-- l10n/uk/files_trashbin.po | 4 +-- l10n/uk/lib.po | 4 +-- l10n/uk/settings.po | 4 +-- l10n/uk/user_ldap.po | 4 +-- l10n/ur_PK/core.po | 4 +-- l10n/ur_PK/files.po | 4 +-- l10n/ur_PK/files_trashbin.po | 4 +-- l10n/ur_PK/lib.po | 4 +-- l10n/ur_PK/settings.po | 4 +-- l10n/ur_PK/user_ldap.po | 4 +-- l10n/vi/core.po | 4 +-- l10n/vi/files.po | 4 +-- l10n/vi/files_external.po | 4 +-- l10n/vi/files_sharing.po | 4 +-- l10n/vi/files_trashbin.po | 4 +-- l10n/vi/lib.po | 4 +-- l10n/vi/settings.po | 4 +-- l10n/vi/user_ldap.po | 4 +-- l10n/zh_CN.GB2312/core.po | 4 +-- l10n/zh_CN.GB2312/files.po | 4 +-- l10n/zh_CN.GB2312/files_external.po | 4 +-- l10n/zh_CN.GB2312/files_sharing.po | 4 +-- l10n/zh_CN.GB2312/files_trashbin.po | 4 +-- l10n/zh_CN.GB2312/lib.po | 4 +-- l10n/zh_CN.GB2312/settings.po | 4 +-- l10n/zh_CN.GB2312/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 4 +-- l10n/zh_CN/files.po | 4 +-- l10n/zh_CN/files_external.po | 4 +-- l10n/zh_CN/files_sharing.po | 4 +-- l10n/zh_CN/files_trashbin.po | 4 +-- l10n/zh_CN/lib.po | 4 +-- l10n/zh_CN/settings.po | 4 +-- l10n/zh_CN/user_ldap.po | 4 +-- l10n/zh_HK/core.po | 4 +-- l10n/zh_HK/files.po | 4 +-- l10n/zh_HK/files_external.po | 4 +-- l10n/zh_HK/files_sharing.po | 4 +-- l10n/zh_HK/files_trashbin.po | 4 +-- l10n/zh_HK/lib.po | 4 +-- l10n/zh_HK/settings.po | 4 +-- l10n/zh_HK/user_ldap.po | 4 +-- l10n/zh_TW/core.po | 4 +-- l10n/zh_TW/files.po | 4 +-- l10n/zh_TW/files_external.po | 4 +-- l10n/zh_TW/files_sharing.po | 4 +-- l10n/zh_TW/files_trashbin.po | 4 +-- l10n/zh_TW/lib.po | 4 +-- l10n/zh_TW/settings.po | 4 +-- l10n/zh_TW/user_ldap.po | 4 +-- lib/l10n/fa.php | 18 ++++++++++++ settings/l10n/fa.php | 5 ++++ 550 files changed, 1184 insertions(+), 1138 deletions(-) diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 08c52e3b01..7291dbbf15 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -70,6 +70,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή.", "Files are being scanned, please wait." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.", "Current scanning" => "Τρέχουσα ανίχνευση", +"directory" => "κατάλογος", +"directories" => "κατάλογοι", "file" => "αρχείο", "files" => "αρχεία", "Upgrading filesystem cache..." => "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 5e4dcb5b1f..2d7512354d 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -7,8 +7,12 @@ "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", "Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", +"Missing requirements." => "Fehlende Voraussetzungen", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", +"You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index fdea5f26a9..0b49edbd2a 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -7,7 +7,7 @@ "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", "Missing requirements." => "Requisitos incompletos.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Saving..." => "Guardando...", @@ -20,8 +20,8 @@ "Enabled" => "Habilitar", "Disabled" => "Deshabilitado", "Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", -"Old Recovery key password" => "Contraseña de la antigua clave de recuperación", -"New Recovery key password" => "Contraseña de la nueva clave de recuperación", +"Old Recovery key password" => "Antigua clave de recuperación", +"New Recovery key password" => "Nueva clave de recuperación", "Change Password" => "Cambiar contraseña", "Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", "Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index f83562dd64..d145a176f7 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -1,12 +1,12 @@ "Acceso garantizado", +"Access granted" => "Acceso concedido", "Error configuring Dropbox storage" => "Error configurando el almacenamiento de Dropbox", -"Grant access" => "Garantizar acceso", -"Please provide a valid Dropbox app key and secret." => "Por favor , proporcione un secreto y una contraseña válida de la app Dropbox.", +"Grant access" => "Conceder acceso", +"Please provide a valid Dropbox app key and secret." => "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta.", "Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", @@ -19,8 +19,8 @@ "Groups" => "Grupos", "Users" => "Usuarios", "Delete" => "Eliminar", -"Enable User External Storage" => "Habilitar almacenamiento de usuario externo", +"Enable User External Storage" => "Habilitar almacenamiento externo de usuario", "Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo", -"SSL root certificates" => "Raíz de certificados SSL ", +"SSL root certificates" => "Certificados raíz SSL", "Import Root Certificate" => "Importar certificado raíz" ); diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index 5e365746e8..cac7b7591d 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -1,4 +1,5 @@ "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Bestätigen", "%s shared the folder %s with you" => "%s hat den Ordner %s mit Ihnen geteilt", diff --git a/apps/files_sharing/l10n/fa.php b/apps/files_sharing/l10n/fa.php index 1a7ae9330a..7a744c8463 100644 --- a/apps/files_sharing/l10n/fa.php +++ b/apps/files_sharing/l10n/fa.php @@ -1,4 +1,5 @@ "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", "Password" => "گذرواژه", "Submit" => "ثبت", "%s shared the folder %s with you" => "%sپوشه %s را با شما به اشتراک گذاشت", diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index c267db7358..b2d5a2aed2 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -1,9 +1,9 @@ "No se puede eliminar %s permanentemente", "Couldn't restore %s" => "No se puede restaurar %s", -"perform restore operation" => "Restaurar", +"perform restore operation" => "restaurar", "Error" => "Error", -"delete file permanently" => "Eliminar archivo permanentemente", +"delete file permanently" => "eliminar archivo permanentemente", "Delete permanently" => "Eliminar permanentemente", "Name" => "Nombre", "Deleted" => "Eliminado", diff --git a/apps/files_versions/l10n/fa.php b/apps/files_versions/l10n/fa.php index 4ec6aa1bbb..43f7d71eb5 100644 --- a/apps/files_versions/l10n/fa.php +++ b/apps/files_versions/l10n/fa.php @@ -4,5 +4,6 @@ "failure" => "شکست", "No old versions available" => "هیچ نسخه قدیمی در دسترس نیست", "No path specified" => "هیچ مسیری مشخص نشده است", +"Versions" => "نسخه ها", "Revert a file to a previous version by clicking on its revert button" => "بازگردانی یک پرورنده به نسخه قدیمی اش از طریق دکمه بازگردانی امکان پذیر است" ); diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 8aa64477e4..605c75f288 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -1,4 +1,5 @@ "Löschen der Zuordnung fehlgeschlagen.", "Failed to delete the server configuration" => "Löschen der Serverkonfiguration fehlgeschlagen", "The configuration is valid and the connection could be established!" => "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen.", @@ -7,6 +8,7 @@ "Take over settings from recent server configuration?" => "Einstellungen von letzter Konfiguration übernehmen?", "Keep settings?" => "Einstellungen beibehalten?", "Cannot add server configuration" => "Das Hinzufügen der Serverkonfiguration schlug fehl", +"mappings cleared" => "Zuordnungen gelöscht", "Success" => "Erfolg", "Error" => "Fehler", "Connection test succeeded" => "Verbindungstest erfolgreich", @@ -74,8 +76,13 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein.", "Internal Username" => "Interner Benutzername", "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder in ownCloud. It is also a port of remote URLs, for instance for all *DAV services. With this setting, the default behaviour can be overriden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." => "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichenwerden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Übereinstimmungen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses in ownCloud. Es dient weiterhin als Port für Remote-URLs - zum Beispiel für alle *DAV-Dienste Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich einzig und allein nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken.", +"Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:", "Override UUID detection" => "UUID-Erkennung überschreiben", +"By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig erkennt OwnCloud die UUID-Eigenschaften des Benutzers selbstständig. Die UUID-Eigenschaften werden genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird ein interner Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie können diese Eigenschaften überschreiben und selbst Eigenschaften nach Wahl vorgeben. Sie müssen allerdings sicherstellen, dass die Eigenschaften zur Identifikation für Benutzer und Gruppen eindeutig sind. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu zugeordnete (neu erstellte) LDAP-Benutzer und -Gruppen aus.", "UUID Attribute:" => "UUID-Attribut:", +"Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", +"Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", +"Clear Groupname-LDAP Group Mapping" => "Lösche LDAP-Gruppennamenzuordnung", "Test Configuration" => "Testkonfiguration", "Help" => "Hilfe" ); diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 7921264053..f58e333521 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index f34f240050..de0d0fcf63 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 7b3a314dc6..c3e8c2bc0a 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 69a0d82298..e0b2c6106c 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 7556d9adf6..1b1652a258 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 087b64efdb..27a51bc092 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 2ae2d24bd7..bf327aa55c 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 202d9c6b0e..f7e1f7c218 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index b698940e3f..44c426598e 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index fa1a954195..0f96441bc0 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 79f1e2e3dd..d9d6d29db0 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 3b94afdd04..71be27c6a3 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 977488e063..13adc2d926 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index cbb1540590..2eda6b4faf 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 0e8b51471a..c43a476fdd 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 26a30f0297..bced70768e 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 94d425248a..76595482f2 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 8a4443adf3..3b47a43952 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 164bf11602..4f76e1f46a 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 0ba6255663..a29db5512e 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index cba8ae64ac..f1a0d021fe 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index fa0285217e..a7fa1937a4 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 22cd6b42ca..1c0bf9be57 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 5e9b5e9819..a711bd830e 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 046ce452e5..9c2243cbfe 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 5880b2ae67..09c235ec3a 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 0d80e780d8..a612e6fdf6 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 3d8cc02a35..742d4b79b6 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 660830832c..c671525e59 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index ff6baefa69..d287f451cb 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 84bdd8f0f9..73e93238b7 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Josep Tomàs \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index a16cf3c045..ca185b4f14 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 7341b4dfdf..689db3c82e 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 1e18c4bf30..1d37fe05d9 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 913f6a953a..403c72f0aa 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 86b5a465be..0dfee9c29a 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 51333a6133..8853815555 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 980f1dbf54..7c57d07c5c 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 27a68b24dc..d3d20cc2f4 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 436225b567..0e1fa9e214 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index aec83bccdf..d8791b4285 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 1a68432a78..35286b5e0b 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 93e6c43e72..47275dbd4c 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 7a66e9553f..54c2132511 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 961cbe91c4..f0b6438fb6 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 0c911d0ae9..9bd3d827bd 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index ee5b45cfcb..52e57cac7c 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index d282da92c1..8e7279cc0c 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index a24592c9e8..39f0349991 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 059469d539..9b6cfa597c 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 164a3f3b45..fa98566764 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 53adcdd242..c6e72861e4 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 2c8b78e664..c07ddf8025 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 758a80526f..e595291b92 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index 55f500dd2f..19811bc1d7 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 31242cb32c..9c2fb2245b 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index ebac988b05..3219fe42e8 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index ba66ba99ab..dc7d2bf16f 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index f61f28e93d..c2c2b1ce69 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index a002ab0d07..e2b6756f97 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 7b961cc05d..cb8f220d81 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 9b2f2c92b5..cae85ed234 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 2cd84dbdee..23f25e9ff6 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 3a345f6fc3..96bdaafac6 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 831b0c4390..f3a22e37f2 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index c4c1427f2a..805078c677 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 4466fd8578..4541e31e4a 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index a219101323..9e43bab6a1 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 42e51c3ec7..7c24addda1 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index da72733d01..c77a3bb583 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 9f1d0f5a60..9f4b5ac252 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index e69754efc7..752ceee589 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 05:50+0000\n" +"Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,18 +62,18 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Fehlende Voraussetzungen" #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "" +msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." #: js/settings-admin.js:11 msgid "Saving..." @@ -87,7 +87,7 @@ msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Sie können den privaten Schlüssel ändern und zwar in Ihrem" #: templates/invalid_private_key.php:7 msgid "personal settings" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index b84a11ad19..7ef58f6445 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index fb84d74a17..8f19affb07 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# JamFX , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." #: templates/authenticate.php:7 msgid "Password" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 4b32dd9a1c..7f22116bbf 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index d4ce41cf5c..9ad78104ea 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index d01e9c7411..765e14c23a 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index cd5edb7af7..41a7d4f1a6 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -5,14 +5,15 @@ # Translators: # a.tangemann , 2013 # Marcel Kühlhorn , 2013 +# JamFX , 2013 # traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +23,7 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Löschen der Zuordnung fehlgeschlagen." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" @@ -62,7 +63,7 @@ msgstr "Das Hinzufügen der Serverkonfiguration schlug fehl" #: js/settings.js:111 msgid "mappings cleared" -msgstr "" +msgstr "Zuordnungen gelöscht" #: js/settings.js:112 msgid "Success" @@ -365,7 +366,7 @@ msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attribute #: templates/settings.php:103 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Interne Eigenschaften des Benutzers:" #: templates/settings.php:104 msgid "Override UUID detection" @@ -380,7 +381,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Standardmäßig erkennt OwnCloud die UUID-Eigenschaften des Benutzers selbstständig. Die UUID-Eigenschaften werden genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird ein interner Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie können diese Eigenschaften überschreiben und selbst Eigenschaften nach Wahl vorgeben. Sie müssen allerdings sicherstellen, dass die Eigenschaften zur Identifikation für Benutzer und Gruppen eindeutig sind. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu zugeordnete (neu erstellte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -388,7 +389,7 @@ msgstr "UUID-Attribut:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "LDAP-Benutzernamenzuordnung" #: templates/settings.php:108 msgid "" @@ -407,11 +408,11 @@ msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Lösche LDAP-Benutzernamenzuordnung" #: templates/settings.php:109 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Lösche LDAP-Gruppennamenzuordnung" #: templates/settings.php:111 msgid "Test Configuration" diff --git a/l10n/el/core.po b/l10n/el/core.po index 4332cfb072..d489d0a577 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index 6b0883e82e..2478ec01dd 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -330,11 +330,11 @@ msgstr "Τρέχουσα ανίχνευση" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "κατάλογος" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "κατάλογοι" #: templates/part.list.php:89 msgid "file" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index bbb1627bb1..87b702ff99 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index dcbcc3e5ee..8529d7c707 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index dba39b0239..2581efa179 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index ea115ae025..2a74bdc6c1 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 17751429ac..3a50c65fba 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 01e72579db..5fd8754aab 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 7085813c0c..7e09bedeff 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 0e20970a6e..d09b9032a0 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 656683f1a0..7a6e09a0d3 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 3e881c1ffd..bab45ceb44 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 652318d63d..3c16f9ec42 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 0665488a83..42de652378 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 09c9fba004..3b614ebfae 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 5732d06206..4399a50d3e 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index c8fab032cf..4a30e551df 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 57538c812a..1bfce46442 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 058ba1e541..d7acaeaeac 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index 299c46273b..b26976a53a 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: mikelanabitarte \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 687a5e488e..fbcbc4e2fe 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 17:50+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 07:50+0000\n" "Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros." +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros." #: hooks/hooks.php:44 msgid "Missing requirements." @@ -124,11 +124,11 @@ msgstr "Cambiar la contraseña de la clave de recuperación" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "Contraseña de la antigua clave de recuperación" +msgstr "Antigua clave de recuperación" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "Contraseña de la nueva clave de recuperación" +msgstr "Nueva clave de recuperación" #: templates/settings-admin.php:53 msgid "Change Password" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index e33aeae34d..ec14ee44d6 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Acceso garantizado" +msgstr "Acceso concedido" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" @@ -27,11 +28,11 @@ msgstr "Error configurando el almacenamiento de Dropbox" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Garantizar acceso" +msgstr "Conceder acceso" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Por favor , proporcione un secreto y una contraseña válida de la app Dropbox." +msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta." #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" @@ -55,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." +msgstr "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." #: templates/settings.php:3 msgid "External Storage" @@ -108,7 +109,7 @@ msgstr "Eliminar" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Habilitar almacenamiento de usuario externo" +msgstr "Habilitar almacenamiento externo de usuario" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" @@ -116,7 +117,7 @@ msgstr "Permitir a los usuarios montar su propio almacenamiento externo" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Raíz de certificados SSL " +msgstr "Certificados raíz SSL" #: templates/settings.php:159 msgid "Import Root Certificate" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 66bdf45dab..f176524664 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 91137a04fd..fb926e2fdc 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "No se puede restaurar %s" #: js/trash.js:7 js/trash.js:97 msgid "perform restore operation" -msgstr "Restaurar" +msgstr "restaurar" #: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 msgid "Error" @@ -37,7 +38,7 @@ msgstr "Error" #: js/trash.js:34 msgid "delete file permanently" -msgstr "Eliminar archivo permanentemente" +msgstr "eliminar archivo permanentemente" #: js/trash.js:123 msgid "Delete permanently" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 89307a3c01..1277356dd1 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 07:42+0000\n" +"Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 6ac5a20f36..30b2bf362c 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 7e15bd398d..53a0790b3f 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index f58906dcbe..a2152e191e 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index 5d60f41af1..38bc6e5bb7 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -6,14 +6,14 @@ # Agustin Ferrario , 2013 # Art O. Pal , 2012 # pggx999 , 2012 -# saskarip, 2013 +# saskarip , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-17 02:02+0200\n" -"PO-Revision-Date: 2013-06-16 07:50+0000\n" -"Last-Translator: saskarip\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 08:08+0000\n" +"Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 67cb939b45..aa18899468 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index cf0bb9d6de..4af37c7c9b 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 4686b2c6bc..be3a5eea2b 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index e52eb0b7a1..770e65e380 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 11001b3bc1..4dd17bbd53 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index fae53dd9e7..f21762f9df 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index ff52cbae5e..2ab164d7b0 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index f3591aa001..5c571c1435 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 529d71afb7..754f5e97f8 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 136b7b1b6c..a71ffa4528 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index e2b20646e3..c9f176b962 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 351c112879..88209aab9b 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index ec6ff4f669..9760173873 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 8f3caa4f12..0dbbfd574b 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 4e590eab41..62a72b6f80 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 86f2cb1344..6f0575b311 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 20667c2b8c..f211559a38 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 24f5f5bdea..61703fc05b 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 52b8ac20be..dd1e6a1fcf 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 185fa568ae..033c39723b 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 6d81347540..1d90038bfa 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index b9d5b65a4b..d56a988e11 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index d59e96233f..62b96a7e45 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 76e4cca31e..5f8856c9c4 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 19416f2dfc..cee0aa1c84 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 4025d89449..7865276de8 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 605f8e977c..c5a325c300 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 4b79178c76..c43b06e7c2 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "رمزعبور اشتباه می باشد. دوباره امتحان کنید." #: templates/authenticate.php:7 msgid "Password" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 17e51aacf8..bdf12399b9 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 1917353992..a288b3ab8a 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 12:50+0000\n" +"Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,7 +51,7 @@ msgstr "هیچ مسیری مشخص نشده است" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "نسخه ها" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index d745d9a478..d37876b604 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,7 +64,7 @@ msgstr "فایل های انتخاب شده بزرگتر از آن هستند ک #: helper.php:236 msgid "couldn't be determined" -msgstr "" +msgstr "نمیتواند مشخص شود" #: json.php:28 msgid "Application is not enabled" @@ -75,7 +76,7 @@ msgstr "خطا در اعتبار سنجی" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "رمز منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" @@ -92,31 +93,31 @@ msgstr "تصاویر" #: setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s نام کاربری پایگاه داده را وارد نمایید." #: setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s نام پایگاه داده را وارد نمایید." #: setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید." #: setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s" #: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 #: setup/postgresql.php:24 setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید." #: setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "نام کاربری و / یا رمزعبور MySQL معتبر نیست." #: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 #: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 @@ -125,7 +126,7 @@ msgstr "" #: setup/postgresql.php:125 setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "خطای پایگاه داده: \"%s\"" #: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 #: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 @@ -138,28 +139,28 @@ msgstr "" #: setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "کاربرMySQL '%s'@'localhost' درحال حاضر موجود است." #: setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "" +msgstr "این کاربر را از MySQL حذف نمایید." #: setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "کاربر'%s'@'%%' MySQL در حال حاضر موجود است." #: setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "" +msgstr "این کاربر را از MySQL حذف نمایید." #: setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "ارتباط اراکل نمیتواند برقرار باشد." #: setup/oci.php:41 setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نیست." #: setup/oci.php:173 setup/oci.php:205 #, php-format @@ -168,15 +169,15 @@ msgstr "" #: setup/postgresql.php:23 setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست." #: setup.php:42 msgid "Set an admin username." -msgstr "" +msgstr "یک نام کاربری برای مدیر تنظیم نمایید." #: setup.php:45 msgid "Set an admin password." -msgstr "" +msgstr "یک رمزعبور برای مدیر تنظیم نمایید." #: setup.php:198 msgid "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index cd66d0d598..4333cf03a5 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "خطا در اعتبار سنجی" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "نام نمایش شما تغییر یافته است." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -307,7 +307,7 @@ msgstr "وادار کردن مشتریان برای ارتباط با ownCloud msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "از طریق HTTPS به این نسخه از ownCloud متصل شوید تا بتوانید SSL را فعال یا غیر فعال نمایید." #: templates/admin.php:197 msgid "Log" @@ -315,7 +315,7 @@ msgstr "کارنامه" #: templates/admin.php:198 msgid "Log level" -msgstr "" +msgstr "سطح ورود" #: templates/admin.php:229 msgid "More" @@ -466,13 +466,13 @@ msgstr "ایجاد کردن" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "مدیریت بازیابی رمز عبور" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "در حین تغییر رمز عبور به منظور بازیابی فایل های کاربران، رمز عبور بازیابی را وارد کنید" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 48f895880e..f73e44e097 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index c06463c8a6..9d07f5a883 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 0844c5aa57..c80d04d5f4 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 67766647a9..5461218a10 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index c5fdf50326..05e068f885 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index da0ae0ae96..a519516e34 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index f8022d3a6d..9f26c17122 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 714a577de7..1dcc938d7a 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 1dbcb293f6..8b673753c6 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 1d4393fe45..15eb367c9c 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 0344dbe8c5..0eb02c184e 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index f890257607..500c423b56 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 840bb3abfe..634329a330 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index cc8f2ffdc1..5bf8643e2f 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 9c9799049b..bc2cff3953 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 2ddd532994..d6ecfda05f 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index e1ce982eaf..39a0a8a48c 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 05499d79f5..2d018b49bc 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 24699efb8a..bd8cfda4c0 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index d5beedea7a..90e75c3e23 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index c25384f685..44389a9cdf 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 0a53f820c3..f312548dbc 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 475bddcf71..772f5f0bbe 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 7731af3485..e7fcfe5126 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index d859f5bdb2..b26dff736e 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 7404c2fa19..3d0567b9f3 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index fc8e80f2a3..da8755aea3 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 065ad6c68c..5ef95a4b88 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 5930fb9759..4d252bf919 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 5d3e74dfec..6b12ed3926 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index f15f83e275..369891a13b 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 2354753494..008e9e26c5 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index fd633e6958..460ba08743 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 535088f920..ba977b5c91 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 568cab2ca3..1f32a0afd6 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 4a821f4ebc..20955b3b49 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 54e9df71dc..6856389865 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 9b8e044f3f..3085a64e0c 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 51dc53b007..1eff314d2d 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index f5535fc3fa..0c71cd1420 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 095730a21f..78d2661974 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index e963719f47..bdb008d0ab 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 821b77bca5..072ac068a0 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index f543b87e33..36b9eea034 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index ddc3bd2733..8657f23d7e 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index b2536a62a8..825d92728b 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 4029a14e1b..315cf08e47 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index adc7377c18..cb1a22a329 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 56cd13e50d..28a99a7559 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 4bb6d28c96..22951fdac6 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 7ad98d36f7..9cf783be2f 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 1ada9376d5..331b5e8d1e 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 377f981460..44b691374c 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 613fcb0886..13a4140b99 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index ca3cfd9c45..bcd318a1b9 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index d85f0f0aa4..1cd86ab4d3 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 866287cb69..7e1f7dbf00 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 44b8c5b5e7..fb65de7ef8 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 54de6e10d0..ccbeee8d50 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 07b359ecd3..9bde8e8b79 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 5005493981..7e456232c0 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 1072ae0edc..ea04090eb9 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 3d2aaa3f4a..cd07dccb63 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 0347a58b3d..ff9e579889 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index d6d7a5d96a..4bc3b9c5f8 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index ba7801f875..714f5786e1 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 82af5bfc06..fd0c5dff8b 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 09e5d52df1..e8da07d982 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 9f0452a0bb..61c7ec568d 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index d09975bba4..041e73a8d6 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 5b5f41e780..56327f9198 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 88d9b4c26e..1e582d40e6 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 94e4a6dbad..ab8b0e64c0 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 2a859090c2..f7c74ee731 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 10db7be22e..5324e13d18 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index f566175c64..4cc836ac02 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index d8cbc1dc98..3ad3b9b5b8 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index 3d758c3dbf..f4fdcc19a9 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 4db267b41b..07dbe92ebd 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index e960ce60b2..541341279e 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 63780f1471..e5f2ec3cda 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index b05ac4ce74..9b03edc87d 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 5c5ee06479..74291e07cd 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 3a3f33f1ba..518896a855 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index cdc72c61ca..91137e735c 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index 2cbd13491d..8c9f7e0db2 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 16f037e7a3..5aebd46d8a 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 39a23c64c3..b52f22dc6b 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 0a8dac8af7..75650f58fc 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index f45fd3a327..657130e4f3 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 644d965868..bdd8b4d750 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 35f513722b..d5d8d6e1e8 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 646c42d2fc..c0d4ab7dd2 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 3bd8fc22f4..efd78d6114 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index cbaa036584..ea04f3df7c 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 0e8c276c9d..84f7b0bc77 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 3567e09270..c5fc1e8734 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 38d02f59eb..253c4a919e 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 70c46e9f6f..1cc4b6483c 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index e348318434..fcd6fa3957 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 221e7c6f2a..9a9ec4bd3f 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 92ee37d7ab..f8c7d64fc6 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ad855272a7..f535dd229c 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 07fcf180fd..473a92c441 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 5e1063ce50..555b8c7578 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 39d7e84efb..3de78a630c 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 3344597735..6a1aed832e 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index b503e60899..40b370a454 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index ccd2eb15f2..c8b25ab735 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index f3f643f6b8..5631f68150 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 7c2549c22b..1bb3e1c233 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index cafe6df49f..174365cb6d 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 11a0595007..15d541fd1c 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 45d1a0bebc..eea0b3fd38 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 534693bda4..31d2cdd184 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 0ba2086772..dcdc5a8f3c 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 1249006996..0d5172981c 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 115bc91189..87bdb1b63a 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 9925e572a3..4ac07aa8ad 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 9ecfe6f66a..8bb8996c19 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index b6cf0f5521..4b8ef3247f 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index fcf1f13277..76ccae5add 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index d5487d9916..c1bb63e578 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 5d897de495..b6b94ed7a5 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 1ae71a4eb2..15d557df5c 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index ced4b60ab7..ad26c4657f 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 00440d62a2..720cad4f11 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 3d9154e6a0..70874c610e 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index ef208f9446..692772cf79 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index a133293998..ada6fbf0ad 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index d95c856894..ed2f0b3a45 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index bd3d2a8057..045ff019ec 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 293f9977af..71a2d7b367 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index b32b2d7dc1..88897dd15c 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 757f87dbf5..0c7153e767 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 33cca82281..f22ccdab21 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 453444901d..f74ed4a920 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index f7c5e944be..a2b69c2f48 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 43a8db0e09..66cf671d30 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 2343df9252..a07474a53a 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 596483e55f..90376da3b3 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 758656e08b..7da79e40d0 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index bed4ca4c74..32bc8219e1 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index bca01a3522..5c9e7603ac 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 20e1facd96..75adae3d1c 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 53c62e5ef0..65e927e197 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 46d49390e7..caf1f8ab04 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 6f451b38ac..d171e18826 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 48d0bd6964..968bac5824 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 65ea3e5ee7..fe3f5ffb50 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index b7737e0742..59c4d851c1 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index ec42d05418..5ed406ad4a 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 20f5ba9102..efe3913c7d 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 709e760841..bf8427d910 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index b920068e4d..ac5e6d37ea 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 05fa5b52ee..12b0072562 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index a1bbb26e01..8596a89d1f 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 1a145bdd1e..185ab28786 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index da92206d6f..072b7e4ad3 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 75a627f4b0..48b59109ca 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 2127be6f55..ad14d0dbe3 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index f3591e6cab..82896e576a 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 8a93883746..865908299a 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 48fbd829e9..112f4c8514 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index c7ced65f92..9be97dc1d5 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 4906793df6..610e8449fd 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 238e566104..7a64b72c49 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index f7ad449960..0ee4e87ece 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index ad46e88ac9..532100aa17 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 502307411d..dde2411973 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index c0804d72f3..248c28d80f 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 316e436817..1d97e787ae 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 9494fd8e24..91e6d217ff 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index e657235c76..94d766edc4 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index c646581f84..97ff43c309 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 31beb23c24..a87b638d77 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 4f123478be..9601f74a6e 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index f1f29d35a4..0c87a81b4c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 4eefc74663..9f219fcaf7 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index e7afd67766..2d860f3e02 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 987c4c48f3..fdeb19a94b 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 4335ef760f..ff4c1a2d60 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 98f4944754..aa4df2410e 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 7c9c6f492c..303d72eef1 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index ada55c5b19..45c938c691 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index cc5d0f9599..29e221351c 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index af1f8908e6..d7130bd85d 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 6f793b14b9..0332eae310 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index a3d9cfdddd..f127b82252 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 1074fc32e6..bd9af3dd65 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 3d9b0749f7..0a83492919 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 4f0b3c1474..45bba9e374 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 6b0b49f3d6..d706c6687b 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index edce1183bf..1a96080722 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index d23aaa6a12..6888f0396d 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 77c05f3a4d..b01f581f03 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 4a135d631a..4bd0cbfec8 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 6635d47a93..d314336eb7 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 6300d9a449..f84a8a0a77 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 0613d11951..88a8c84ceb 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 0ea48c16df..42bdb08f94 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 96949bef36..228d66ef19 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 3ad1d2ec2f..8033471de9 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 32fc1f685e..4a42f899f9 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 44ba867a18..5d39d487cc 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 0ee94df8f0..64df204df6 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index d3c2214034..7b2097563a 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index be863dfdf1..f80f8457a4 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 2819962d60..62d6e83fb0 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 380f8e7496..2ad2129ae0 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 54ee0f147c..32dd1de618 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: tuliouel\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 3a05d32a1d..05c66cf9da 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 92f8c8f683..a1fdebe1c5 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 6e9c8b4b26..838beab7f7 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 9a96ddf4df..7f82d489c1 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 31e5f6f036..cc97100c03 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index be007e7327..68aca8fb45 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index be8101b103..2ec02bb1e5 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index bf5e21058f..16fe54c9ec 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index becb1d5f0e..8890e65897 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index c9be3a0f93..23e782bec7 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index ee178bb779..ca605c3262 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index a56b54b8a6..e2df15c127 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 0e9647a145..a42ea8fa6f 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index ebfa5ca137..cdc3a1d687 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 5d9be67c4b..89280ae406 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 288fde9bc6..a74e8309f1 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: sergiu_sechel \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index d8ee2eff04..ff3a47a6a5 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 674d6afcb7..c55b5d9ec0 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: sergiu_sechel \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 6035debe0e..a7acd953be 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 0926ad7d7e..207ad850d7 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 1aa65fb540..51f9adf04e 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: sergiu_sechel \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index f021da73df..c712b66c64 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index bd63a40716..7515a2c60c 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index daaf1ef931..323741ed78 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 8a978b34a5..f2b22ee765 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 5505d1b2ee..462a3f541b 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 28f21030d7..08d8e64723 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index a6cfa9ae03..9bad11a1c8 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 3643563588..d7f8a44788 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: lord93 \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 85111a9680..78ed57614b 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 4f160e10cc..6b4b7b5637 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 4bcff68757..90fcbea348 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 96976e0b07..c87a96ee4e 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 8d24d53d93..48034ca459 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 79b983aba3..0e3075173e 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 8545d7e072..7a7fc630d3 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 76f1e7f46e..0b009bcacb 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index a77859fde2..caebff9f6d 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 9b4f2c3fb5..a4ccefd271 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 939ad33fd3..ebba8320d3 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index b289c4c7a8..45e1aa7aae 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index de55dba0b4..e27016d098 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 5ae6314841..3ac5c906ad 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 0712d64a8c..81eb30ca16 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 100cbdd0f6..fd63dfb8ee 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index de617b0119..4c36e4b31f 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 0011d518d0..9c8b9cebc0 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index cb1c1bae64..dae293b9fe 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 42a085608b..6b4c2468b9 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 47edf28098..26031b3416 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 1ff6b2488e..42d1ac062c 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 173c139c15..bd429344b0 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 45c303a247..62a3d0445c 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 6201121c51..8b34cb5057 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 6ad80332b0..5d2483dd03 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index dc6aa4d76e..8adb9ef879 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 32cfa5c29f..a742742103 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 68352aed5f..469d80e942 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index e811cd3ee6..c406557bb4 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 4a98d453f9..e70b47718a 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index f1d8bc2eb8..7ceba3b313 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index da95f9d2ac..0ff49c9523 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 12477e378d..1dc8723a5d 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 6fb85d3a60..0da9726e2f 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index ac6c2c0ab2..643f865502 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 279ce960d4..d155f7a63e 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 93ccb13263..0731bbbbb7 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index cd198675ad..adafcd3f37 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index fd296230f5..974ab29183 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index f2a8317cfd..ace503a3cf 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index a0b235968b..7341271f6e 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 8ac56e0725..753c20bc82 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index ba92ff3fee..ac2d6f336c 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 73abc2fb2e..08f8fc67b3 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 7b96dfe0e6..fa0d21a0b7 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 5988cf2808..8ec3171ab3 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index ca5cf4a79f..2ac18a60f5 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 11cc448994..ec87ceeffa 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index f4d9b3eb4f..224fefd9da 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index b609084d45..3b250dcef3 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 916151e272..dc4e1548ca 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 66c0ec63b0..ea6222e975 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 3f98305c73..e4548adfa9 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f65f54ac38..4763ca04f5 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 2ad4df144c..d87aec5515 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index b204dbe270..f9b6a3d718 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 2a245bcda3..6442a695e8 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index e27796e992..4e55ffa734 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 00a7191780..6e8799f081 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 7d30cf795e..7426f17c14 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index aec26f7257..3e23d34cfd 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index fe0b18eb61..b7f9c63376 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index ab6008046f..f7f0edadd1 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index e8e8b72fd7..36bb6ecaff 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index ec1c43f92f..20c6bb1744 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 1668332530..4f3f184d56 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index affb971fde..7fd433f977 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index c1e770700c..f9f76f668b 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 7afc70cfec..e94f574838 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 8aaa4b52cc..30a235daab 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7c7b434f87..8e4459956e 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 0e6c1f8065..d1db39f0c0 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 845a43e6e7..f15972881e 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index f19c788f74..d51b679e23 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index f72585b196..ac8cde2a9b 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 74fea51fc5..08975266d3 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index f6968d359b..fe06fff122 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 37abe263fd..087a76e761 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 87f39ec78c..ac00d156fc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 2b540c4a62..f5aae1c778 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 15faaea821..a7d39d6e6b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index b792f2466c..0852ded1a1 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index be4fc70c4f..63c5562436 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index b87d9e418b..8e8895e516 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index ab00a47cb7..d454d5b61c 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 04e4d9d42d..c68dd6b066 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 991bd6e2b3..159ed6b826 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 9d3b8818a7..85af46813e 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 0374be1c25..0e80ec7744 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 18b99dd73c..6693167c73 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c4a2949946..3014479504 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index b06cbc4d33..177e47a38f 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 1c0dfbde28..cf282c7aec 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index fe2af81695..cbdb225b6d 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 0c2b62d3ca..7249f0f5ae 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index ea7cc7040f..72f72772a2 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index d13b49aeea..3049f9443e 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 45dc111fea..67794a0121 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 6721653194..d2b2f1a56e 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 79e644aff4..87c7b7d1a8 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 7de9d97bf8..41fc0ff42e 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 3cf250e0bb..906ab6909d 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index e5f829881b..a6332d8822 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index fd7245fbd1..bcfab4ea92 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 42883425f1..6b429c4679 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 2fb8227ff6..a741200789 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index cbec3cbd9e..c0378bb8b0 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 4496bd4339..0f03046115 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 961d1013f2..e759f21e7c 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index f8f564d9b3..c251c0ce84 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index d6b015ad40..66872cf804 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 86828780be..79caf516a7 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index eb65e77e73..024841df38 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index ee3e4deb2f..8768113365 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index ac059352ce..d735287c1f 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 033d0ad941..480b556d7b 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 4f81db33c4..2588fae302 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00:03+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 6850b1b4d3..b4f16cd96d 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 214b6d2a17..1b7d182014 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index fdac69996c..f3d4a9614a 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index ffbee643ca..8416346e43 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 5110a664be..78e0eff507 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 7929e21812..f0c034d883 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 6bf303d4cc..b30b6b5102 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 394f1f867c..80da3e9905 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index ecb5c50461..6a883af6f9 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 6fe27e2799..118db2125f 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 4b81646067..7f243ff9d7 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index a2dc4f2b37..728ea1926d 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index c949e1cb87..55005c4274 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 5a375c540f..eb64b8ae9d 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index c7610fe8ba..9a0627bb61 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index fe11ee0d21..6a2049583a 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 3770f35466..ea94304d11 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 3b07d03b88..365966421c 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 0723e201b6..36a3008274 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index f6b9ee99a9..3910f726c1 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 7906cc95d0..9eb2b4df11 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 9f57a80b51..c133035f63 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index cd0a8f8c0a..34aa9902a5 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index f92c66588b..b8e52e3e53 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 709184047f..ce2bb88368 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: m13253 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index ddb3087ba9..c414cdbb82 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 9a51824f98..22016a84dd 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 87a17db673..3279623961 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 167f2d6913..e108b3558b 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index ac7f86c685..4a0f3b9204 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 524be63bad..36a2e04417 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index b36ee4e47f..615d840d9d 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index e9e26cd9eb..29454f541a 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index d9386437c3..b6c51486e8 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index d6227f23c8..97f93211ec 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 3dbb6c6e23..76e54f3586 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 23:14+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 4200dcb9cd..05ca90367d 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index b75b412bee..764dbc31fd 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index cab125c574..f45895cf9a 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 6b453809f2..4201d2f4fb 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 6a03a7cb05..2589e35126 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 698c8040bf..a5bb0172af 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:59+0200\n" -"PO-Revision-Date: 2013-07-06 23:15+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index 11dfefadea..a74188f628 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -10,11 +10,29 @@ "Files need to be downloaded one by one." => "فایل ها باید به صورت یکی یکی دانلود شوند", "Back to Files" => "بازگشت به فایل ها", "Selected files too large to generate zip file." => "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد", +"couldn't be determined" => "نمیتواند مشخص شود", "Application is not enabled" => "برنامه فعال نشده است", "Authentication error" => "خطا در اعتبار سنجی", +"Token expired. Please reload page." => "رمز منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید.", "Files" => "پرونده‌ها", "Text" => "متن", "Images" => "تصاویر", +"%s enter the database username." => "%s نام کاربری پایگاه داده را وارد نمایید.", +"%s enter the database name." => "%s نام پایگاه داده را وارد نمایید.", +"%s you may not use dots in the database name" => "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید.", +"MS SQL username and/or password not valid: %s" => "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s", +"You need to enter either an existing account or the administrator." => "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید.", +"MySQL username and/or password not valid" => "نام کاربری و / یا رمزعبور MySQL معتبر نیست.", +"DB Error: \"%s\"" => "خطای پایگاه داده: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "کاربرMySQL '%s'@'localhost' درحال حاضر موجود است.", +"Drop this user from MySQL" => "این کاربر را از MySQL حذف نمایید.", +"MySQL user '%s'@'%%' already exists" => "کاربر'%s'@'%%' MySQL در حال حاضر موجود است.", +"Drop this user from MySQL." => "این کاربر را از MySQL حذف نمایید.", +"Oracle connection could not be established" => "ارتباط اراکل نمیتواند برقرار باشد.", +"Oracle username and/or password not valid" => "نام کاربری و / یا رمزعبور اراکل معتبر نیست.", +"PostgreSQL username and/or password not valid" => "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست.", +"Set an admin username." => "یک نام کاربری برای مدیر تنظیم نمایید.", +"Set an admin password." => "یک رمزعبور برای مدیر تنظیم نمایید.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", "Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "seconds ago" => "ثانیه‌ها پیش", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 3ab85bceea..8ac4895c93 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -1,6 +1,7 @@ "قادر به بارگذاری لیست از فروشگاه اپ نیستم", "Authentication error" => "خطا در اعتبار سنجی", +"Your display name has been changed." => "نام نمایش شما تغییر یافته است.", "Unable to change display name" => "امکان تغییر نام نمایشی شما وجود ندارد", "Group already exists" => "این گروه در حال حاضر موجود است", "Unable to add group" => "افزودن گروه امکان پذیر نیست", @@ -59,7 +60,9 @@ "Security" => "امنیت", "Enforce HTTPS" => "وادار کردن HTTPS", "Enforces the clients to connect to ownCloud via an encrypted connection." => "وادار کردن مشتریان برای ارتباط با ownCloud از طریق رمزگذاری ارتباط", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "از طریق HTTPS به این نسخه از ownCloud متصل شوید تا بتوانید SSL را فعال یا غیر فعال نمایید.", "Log" => "کارنامه", +"Log level" => "سطح ورود", "More" => "بیش‌تر", "Less" => "کم‌تر", "Version" => "نسخه", @@ -94,6 +97,8 @@ "Use this address to connect to your ownCloud in your file manager" => "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید", "Login Name" => "نام کاربری", "Create" => "ایجاد کردن", +"Admin Recovery Password" => "مدیریت بازیابی رمز عبور", +"Enter the recovery password in order to recover the users files during password change" => "در حین تغییر رمز عبور به منظور بازیابی فایل های کاربران، رمز عبور بازیابی را وارد کنید", "Default Storage" => "ذخیره سازی پیش فرض", "Unlimited" => "نامحدود", "Other" => "دیگر", From 9b9ea7cd8e9050bd3682c1edd81955469bc8474d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 8 Jul 2013 10:07:57 +0200 Subject: [PATCH 49/49] Merge https://github.com/owncloud/core/pull/3827 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Squashed commit of the following: commit eed4b49cebcbcc252a75ed85097730b73213b0da Author: Björn Schießle Date: Mon Jul 8 10:03:23 2013 +0200 initialize OC_Defaults only once commit bf6f07ccc8fb87535a069ca341789a590cb187ee Author: Björn Schießle Date: Mon Jul 8 10:02:48 2013 +0200 link to doc in error messages commit ea61ee60e06ee98f2671aec1fdaff666c50f47c2 Merge: e41af3d 3c1308f Author: Björn Schießle Date: Thu Jul 4 11:10:56 2013 +0200 Merge branch 'master' into better-messages commit e41af3d7bad26aa5ca9ab21ec7dcbadd3cfe5d4f Author: Björn Schießle Date: Thu Jul 4 11:10:41 2013 +0200 move to non-static defaults.php commit 9e4258b1905244bdf34943a825421f041cbed43d Author: Björn Schießle Date: Tue Jul 2 10:32:13 2013 +0200 no sprintf here, lets t() handle it commit fe1df349e248667a137f70d78b04225e5b42a111 Merge: d8f6859 cb5811b Author: Björn Schießle Date: Mon Jul 1 11:13:38 2013 +0200 Merge branch 'master' into better-messages commit d8f68595df2dc0e0917d916cbde511ec5333010b Author: Björn Schießle Date: Mon Jul 1 11:10:57 2013 +0200 use document base url from defaults.php commit 6c5403748a45717125a2aa375550f05646317d72 Merge: bea6b1c 7b0e3e6 Author: Björn Schießle Date: Mon Jul 1 11:00:15 2013 +0200 Merge branch 'master' into better-messages commit bea6b1c8a0968846065b9153e0a3f46a4e3245ee Author: Jan-Christoph Borchardt Date: Mon Jun 24 16:21:12 2013 +0200 link to docs in WebDAV message, ref #3791 commit 3119b364a1094769e711283d1ce9014505f64ab9 Author: Jan-Christoph Borchardt Date: Mon Jun 24 16:10:21 2013 +0200 link to docs in error messages, fix #3819 --- lib/base.php | 5 +++-- lib/config.php | 5 +++-- lib/util.php | 32 ++++++++++++++++++++------------ settings/templates/personal.php | 2 +- 4 files changed, 27 insertions(+), 17 deletions(-) diff --git a/lib/base.php b/lib/base.php index af54f43915..d1279a4633 100644 --- a/lib/base.php +++ b/lib/base.php @@ -173,11 +173,12 @@ class OC { public static function checkConfig() { if (file_exists(OC::$SERVERROOT . "/config/config.php") and !is_writable(OC::$SERVERROOT . "/config/config.php")) { + $defaults = new OC_Defaults(); $tmpl = new OC_Template('', 'error', 'guest'); $tmpl->assign('errors', array(1 => array( 'error' => "Can't write into config directory 'config'", - 'hint' => 'You can usually fix this by giving the webserver user write access' - .' to the config directory in owncloud' + 'hint' => 'This can usually be fixed by ' + .'giving the webserver write access to the config directory.' ))); $tmpl->printPage(); exit(); diff --git a/lib/config.php b/lib/config.php index f1c139f22b..7dd596fcea 100644 --- a/lib/config.php +++ b/lib/config.php @@ -168,6 +168,7 @@ class OC_Config{ */ public static function writeData() { // Create a php file ... + $defaults = new OC_Defaults; $content = "assign('errors', array(1=>array( 'error'=>"Can't write into config directory 'config'", - 'hint'=>'You can usually fix this by giving the webserver user write access' - .' to the config directory in owncloud'))); + 'hint'=>'This can usually be fixed by ' + .'giving the webserver write access to the config directory.'))); $tmpl->printPage(); exit; } diff --git a/lib/util.php b/lib/util.php index 4bc02daf36..8f5f79b6b0 100755 --- a/lib/util.php +++ b/lib/util.php @@ -172,6 +172,8 @@ class OC_Util { public static function checkServer() { $errors=array(); + $defaults = new \OC_Defaults(); + $web_server_restart= false; //check for database drivers if(!(is_callable('sqlite_open') or class_exists('SQLite3')) @@ -184,14 +186,16 @@ class OC_Util { } //common hint for all file permissons error messages - $permissionsHint='Permissions can usually be fixed by giving the webserver write access' - .' to the ownCloud directory'; + $permissionsHint = 'Permissions can usually be fixed by ' + .'giving the webserver write access to the root directory.'; // Check if config folder is writable. if(!is_writable(OC::$SERVERROOT."/config/") or !is_readable(OC::$SERVERROOT."/config/")) { - $errors[]=array('error'=>"Can't write into config directory 'config'", - 'hint'=>'You can usually fix this by giving the webserver user write access' - .' to the config directory in owncloud'); + $errors[] = array( + 'error' => "Can't write into config directory", + 'hint' => 'This can usually be fixed by ' + .'giving the webserver write access to the config directory.' + ); } // Check if there is a writable install folder. @@ -199,9 +203,12 @@ class OC_Util { if( OC_App::getInstallPath() === null || !is_writable(OC_App::getInstallPath()) || !is_readable(OC_App::getInstallPath()) ) { - $errors[]=array('error'=>"Can't write into apps directory", - 'hint'=>'You can usually fix this by giving the webserver user write access' - .' to the apps directory in owncloud or disabling the appstore in the config file.'); + $errors[] = array( + 'error' => "Can't write into apps directory", + 'hint' => 'This can usually be fixed by ' + .'giving the webserver write access to the apps directory ' + .'or disabling the appstore in the config file.' + ); } } $CONFIG_DATADIRECTORY = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); @@ -211,10 +218,11 @@ class OC_Util { if ($success) { $errors = array_merge($errors, self::checkDataDirectoryPermissions($CONFIG_DATADIRECTORY)); } else { - $errors[]=array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY.")", - 'hint'=>"You can usually fix this by giving the webserver write access to the ownCloud directory '" - .OC::$SERVERROOT."' (in a terminal, use the command " - ."'chown -R www-data:www-data /path/to/your/owncloud/install/data' "); + $errors[] = array( + 'error' => "Can't create data directory (".$CONFIG_DATADIRECTORY.")", + 'hint' => 'This can usually be fixed by ' + .'giving the webserver write access to the root directory.' + ); } } else if(!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) { $errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY.') not writable by ownCloud', diff --git a/settings/templates/personal.php b/settings/templates/personal.php index d439640752..147ad834a9 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -105,7 +105,7 @@ if($_['passwordChangeSupported']) {
t('WebDAV'));?>
- t('Use this address to connect to your ownCloud in your file manager'));?> + t('Use this address to access your Files via WebDAV', array($defaults->getDocBaseUrl())));?>
  --
-ownCloud - t('web services under your control')); -?> -
http://ownCloud.org