From 11e4508aa8b53a711a1c14d8d5670df08523db0f Mon Sep 17 00:00:00 2001 From: Donncha O Caoimh <5656673+donnchawp@users.noreply.github.com> Date: Thu, 13 Jun 2024 08:58:20 +0100 Subject: [PATCH 01/67] Auto styling by VScode. --- .../plugins/super-cache/styling/dashboard.css | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/projects/plugins/super-cache/styling/dashboard.css b/projects/plugins/super-cache/styling/dashboard.css index 6c1085912e088..f9246ee88ed8e 100644 --- a/projects/plugins/super-cache/styling/dashboard.css +++ b/projects/plugins/super-cache/styling/dashboard.css @@ -25,7 +25,7 @@ Cantarell, "Helvetica Neue", sans-serif; - --max-container-width: 1128px; + --max-container-width: 1128px; background-color: var(--jp-white); } @@ -50,12 +50,12 @@ #wpsc-callout ul, #wpsc-callout ol, -#wpsc-callout > p:last-child { +#wpsc-callout>p:last-child { font-size: var(--font-body-small); } -#wpsc-dashboard > .header, -#wpsc-dashboard > .footer, +#wpsc-dashboard>.header, +#wpsc-dashboard>.footer, #wpsc-dashboard .wpsc-body-content, #wpsc-dashboard .wpsc-nav { max-width: var(--max-container-width); @@ -75,6 +75,7 @@ height: var(--icon-height); border-radius: 7px; } + .header .wpsc-name { color: var(--jp-black); font-family: var(--wpsc-header-font); @@ -142,7 +143,7 @@ .footer { --icon-height: 16px; - + display: flex; margin-top: 1em; margin-bottom: 1em; @@ -169,7 +170,7 @@ text-align: right; } -.footer .automattic-airline img { +.footer .automattic-airline img { width: 190px; height: auto; -} +} \ No newline at end of file From 0c824eb2d386b0cb374e4fffd1898f4d2d4cecaa Mon Sep 17 00:00:00 2001 From: Donncha O Caoimh <5656673+donnchawp@users.noreply.github.com> Date: Thu, 13 Jun 2024 09:01:33 +0100 Subject: [PATCH 02/67] Style the "Migrate now" button --- projects/plugins/super-cache/styling/dashboard.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/projects/plugins/super-cache/styling/dashboard.css b/projects/plugins/super-cache/styling/dashboard.css index f9246ee88ed8e..2bc37912b426e 100644 --- a/projects/plugins/super-cache/styling/dashboard.css +++ b/projects/plugins/super-cache/styling/dashboard.css @@ -173,4 +173,9 @@ .footer .automattic-airline img { width: 190px; height: auto; +} + +#wpsc-notice-boost-migrate a.button.button-primary { + background-color: var(--jp-black); + color: var(--jp-white); } \ No newline at end of file From da9715142635532df6e2d44e94fa2a5dadec8f70 Mon Sep 17 00:00:00 2001 From: Donncha O Caoimh <5656673+donnchawp@users.noreply.github.com> Date: Thu, 13 Jun 2024 10:06:49 +0100 Subject: [PATCH 03/67] Display an admin notice to migrate to Boost --- projects/plugins/super-cache/inc/boost.php | 44 +++++++++++++++++++ projects/plugins/super-cache/js/admin.js | 9 ++++ .../plugins/super-cache/styling/dashboard.css | 12 +++-- projects/plugins/super-cache/wp-cache.php | 7 +-- 4 files changed, 66 insertions(+), 6 deletions(-) diff --git a/projects/plugins/super-cache/inc/boost.php b/projects/plugins/super-cache/inc/boost.php index 53c9ba08559cd..1fbdd17266ab7 100644 --- a/projects/plugins/super-cache/inc/boost.php +++ b/projects/plugins/super-cache/inc/boost.php @@ -1,5 +1,49 @@ +
+ { ); } ); }; + + // Dismiss admin notice + jQuery( '.boost-notice' ).on( 'click', '.notice-dismiss', event => { + event.preventDefault(); + jQuery.post( ajaxurl, { + action: 'wpsc_dismiss_boost_notice', + _ajax_nonce: wpscAdmin.boostNoticeDismissNonce, + } ); + } ); } ); diff --git a/projects/plugins/super-cache/styling/dashboard.css b/projects/plugins/super-cache/styling/dashboard.css index 2bc37912b426e..964e0dda6cf32 100644 --- a/projects/plugins/super-cache/styling/dashboard.css +++ b/projects/plugins/super-cache/styling/dashboard.css @@ -175,7 +175,13 @@ height: auto; } -#wpsc-notice-boost-migrate a.button.button-primary { - background-color: var(--jp-black); - color: var(--jp-white); +#wpsc-notice-boost-migrate { + width: 80%; + margin: 0 auto; + margin-top: 10px; + + a.button.button-primary { + background-color: var(--jp-black); + color: var(--jp-white); + } } \ No newline at end of file diff --git a/projects/plugins/super-cache/wp-cache.php b/projects/plugins/super-cache/wp-cache.php index d45e536395324..e8a0f331705a0 100644 --- a/projects/plugins/super-cache/wp-cache.php +++ b/projects/plugins/super-cache/wp-cache.php @@ -319,9 +319,10 @@ function wp_super_cache_admin_enqueue_scripts( $hook ) { 'wp-super-cache-admin', 'wpscAdmin', array( - 'boostDismissNonce' => wp_create_nonce( 'wpsc_dismiss_boost_banner' ), - 'boostInstallNonce' => wp_create_nonce( 'updates' ), - 'boostActivateNonce' => wp_create_nonce( 'activate-boost' ), + 'boostNoticeDismissNonce' => wp_create_nonce( 'wpsc_dismiss_boost_notice' ), + 'boostDismissNonce' => wp_create_nonce( 'wpsc_dismiss_boost_banner' ), + 'boostInstallNonce' => wp_create_nonce( 'updates' ), + 'boostActivateNonce' => wp_create_nonce( 'activate-boost' ), ) ); } From 3fbff69c3b18a15f83a735807a7daff039f37c03 Mon Sep 17 00:00:00 2001 From: Donncha O Caoimh <5656673+donnchawp@users.noreply.github.com> Date: Thu, 13 Jun 2024 10:08:23 +0100 Subject: [PATCH 04/67] changelog --- .../super-cache/changelog/add-super-cache-admin-notice-boost | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 projects/plugins/super-cache/changelog/add-super-cache-admin-notice-boost diff --git a/projects/plugins/super-cache/changelog/add-super-cache-admin-notice-boost b/projects/plugins/super-cache/changelog/add-super-cache-admin-notice-boost new file mode 100644 index 0000000000000..f9a1d8d8e2c36 --- /dev/null +++ b/projects/plugins/super-cache/changelog/add-super-cache-admin-notice-boost @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Super Cache: add an admin notice to encourage migration to Jetpack Boost From ccb63f0588a0676e5995eb5f729db102baa41e6a Mon Sep 17 00:00:00 2001 From: Joost de ValkINU8rs6oNgQrkW_O10M{zU#8p2yrcbKUkv=5t3-9XXB~$?K@? z=f&`;-Qwuhq9{c{+oYU5(F#@H7B$3OP;>bn2IDr=RAplz=AzcfU7J6~0CN8(roIaH zB#%XA(RmZO#K~^L_-paxZ|XQP7>Rwc7ivfkqlP>OH3C;r9l47d>PM)KcsDbaLO=3w z)OGbxQ`7|Yo@kF6=@fL~tY&UA6q~8gn`|4>Ip+ZC#*a}$a2$OpBEYM^eEfEt0G zs1Bu~ZtO;ug)_MP7U;sF&CO!0j=Dh?)OEv9Lp>SQ z&}^)L>rjjAD7x?#YQze*FgGfT8i_E}=VDP0;7+uKKByrdg<53uun;aqEt+>wYhoLE zV-{+}_MvW+jjS){GU{_dEzOO>P#tcBp4bX?z72+G|97RJCme$%aRF-aY(U*;ANt^7 z)DRy>oj;3uqFbmAJVGtb!mZ3)N1*E4pdP4~br9-)BQQYwe>Mf}$G0&bW?A=Jk6?T1 zPhe#aKGfQA=3 rLxl=*RsX-$b+D%cGts z3bjh(Y<&mRko87i9D*8&v8cJ6jx%tzJs-j^2z`}{!q+eXH3fT+SA_F1>ON1 12C|Vbpg+-Dnc};hR_#H&`>U82J(8ZR~u7dUD^+rUNCc z yk|U z0USX6H>e?P*w0K!Gpt440r`kC12rW#uqwLxI}ZOjZTV43`+pY&9>zI=@w$Lk%VB@i z5KcpHoQJy6o2a2*jtri&7AN98)M85>$k!`OLw){p)D&Gn?UElbKmLlvxWDs|g4Te~ zAT#Hsu_Adm&cQaQHE k4(E$hLw8?Ct(Y0HO%ay1*lbi2vr|F z+;LjtXk?b0L#PJ}O=kS7P>4-7L(~V=@Hq6uT-0{Ff*R^OsG;;4VLBF!Wyx!z)=WFp zb;E2v1Iv@IN8RuU>P2)8)y{P{1-8mrysjiyFa#qfAFbP#uj!J)pY>g`yOCVL=>*5jYn6d+=M)p7%^ObLxk&oG*{{ zurq4S%ty7e9&6z)d;U7MB`-VLOvMmn-8nn4ruKgzOEHX!1l)(o=#Q1h8sjjFyaQ?| z^Nlkj6oz`TMyN&C+2%cvhMkdE7dN0r@)8!u2dG_;Z@fCf{6|o5QLzvMaTjX)Wn&|} zgML^g&3v(lLrqB^EPyH41t;44D^$mFu|EEWx^d(L^U7_2HOODZK<)pP6f}psP(yec zBk?k-fqcAOreYJ+E;xdP@EB^O&Y I>w>LBr~FoQP=giCZirO4K>w^(5;@Xrl7@> zfyzHYJ<&yMicyoz4TfVJ`8-rZ+1Br^kFXr|#iy8&iAKG0>tZAtL!a8^#U&1O3Qz%YDo!@Blomh|j9FD=lQ_YA?!|vn;*-qn-K^_^{^glj$5EQ+75MnFVvGxM_soLgK;}nz>^q*x2+*FOvgK8 zdFp#(X`Jk)P=>;CTakfk;1u@2JID@nTBVx~?8B+#*{B8*W||xI!+7%LHqXUa@*=ZX zPZ*EtV6oZeb5${#+})f)H43Sy8?HwU@e|bI%0I`
RsG)s?zS!^$ zGa{`~Bh(k0;%F>@doT(Q;}lQU05&Ecy2!M%1+@n5pg;F_3NJQK9)cUl6VOi=pc;IN zc~h~(bRZb@WR Wi#3yCDF3l2<@2#>uD-Zp4as40WSh7>Ix4KrHb# zdmYE4*2F~&L+^LYb&+lgI?)WfF^9>RNPc3S*_I{On;XWXIyeONWV5g;F2gwd#QN0Q zkcCu|`teu@7ofK9N_63FtcULN6e1}2zH1gsENYt!Kwq4I`rvHT(5*)`cnEb}HkQMy z*cYGJyw^svT_>Wh--O YIqfe@^}z6#FtS${}VN| zWiw2J4X`qK2b-s%u3LzgFbnnOTe#c2LEpi> za2yuLm8cQff?9mLQ4O6zt&N}12Orw{e^3nv?lCuxL3QY7RQ=yL90TZ;rZRmm1N$n4 zHB{(Hy+1T>!cdGQZ;RnL4fW*jV>LW$>;JWee`L-lqKormtt(J-{}GnL)1Gi+bM# z?_>P+1{}E0?1J&ACtHVsxE<@@ajb|>P#tycHzUy)^<*!j3rAyjT!#7aH&i=+T8kYp zujUBU$i}!S1W<^>w%8dp)ay_mJcLnr0ks%C53={M2E6oc`7)Ds> KOd<7rFmB;o-uQ^ z5PMMn1!^QJpEXm^6~~dMqDJO6YD6BQ_J5&s=3hP%Fp2y$HpA%iyu@%M25V!N_?j;r zI)TG63u7?!f@$z2^dldNTFsNJ^N~St*5HSj^o^N 0UB$~CL`0}LeJkCpHoM&KiCjjl`PO*jOrlc%G0 zPZmbwx5z9wzL%N*0Tgm6XdgGeVur2-_99P57hXeN>yFpA=GD9z)$n-?QvFra!E#uF zJRY@eyILoq-Y4&(I-Z4P@$^;3e>R1msL)W2`p)!x0ji<*F%%D=I(QXldGL=;m_k16 z2ZogVJ4_~jdd++p9e&;X Nh0@cn8)b*>-g&(0ex^pS$16MH; zf47$TnLkL9s}a2q*uG9DEJzF^v=biUv*T9^`t8^N8xoC)Da2LcKh(cPtfu_@(S-Xu z(`+Mt$VPCYQF9tcykV~nqn!WwPg16T&S>gy63ZxSlyn><*HH rMr4u?CwfqJ z5kFG?Q2W0-N#3JE9V&HfA$}nCkTbPTX hZHk|e2Vx?Ajg5#4M04UQp+&2C)(h+$xeom= z9h>kZKEa*%JF$|`@dx4V!jHRDY$qlW9f+5RWrU9X#NU+1p rgY0yBuupS!Ru<)_r86FMG{cOjNj z{t! ~lsLF}AaTvZ&^dy#(cfc0J zX2P5N`9uF66iHMe^rDKvo&?|AoOw7F|3n>nq3P&M93Ya3@osyPa^7E?NgZzyQJkBY zmzlpppH6uOb?b;hln>(q;!k_c Q^P$*=Tt_*Ba};+_m+v=z>|Np!=I<_G zFFAo9aJn5)j~HO R16E6}|2^|B8L-w;OIyBO|68-6oyc-3Gd^2?2WgHY|1Hw{=j{RTt^>b3DJ%^9o6t99EJ0767enN zOw_NNwM0C5TjCm_BgvZgCP<|sB(It!WKV1)KTr7q{%+5mA^(?hEBwXQiTmXD2pz|W z1C;CJW#$j=v&g5Bk0JEiVhZ`|I23t)=8(dtI0#!3FA(WONn!}Gnb5y|p5mInP{#!8 zOv>XZzfL@+e1+&sxg*h^Xh!Jhh3{fC@g3zB#8%z^X9|sp>x7Qo)~1wKQGS;gLG0E^ z4j;;eOfm20SNsg3?n_%&4L!(zAc84J;5B>h8LKF)r9SU(f-@-Ss6ZT{yq`F3>xy9i zytC#jg^G)9ehI%J-nRKt` ejqn}43DPJOwig6azGKS;DIX*% z5^qp #Q1NavNDM}GR9tT z%4)B1-k~tTCR6P>Uz_`qCs6*Is7SdZp0wve?6ohGFQJ?dgNPKOCi% 8&Zq|KP)s5E=j-A9k;yupAse+>iWp7-Om+1%hpa0y4 zKcea(5li$ULOEB+p6^GlBZ>&7ZZJ;Aa~MzDu-8${`xZC~w=3a@eeT>mQ g)} z`rSRpR_x ?j+LbhH*obih2P|<756HaI*(1oaQflVCVMX#a zic4}0P8m3;QD~)FVX2{wE5(GR##K*h>~v^ft<%7 QSIs&NYR5LH5t|vA@^O*O`|g6F1-Is8=FZ8Tn>&5Unhimj#WqA2%UqxFQvS?Q z`$D}c FK2Vkd{@r?+_^a!uH2b?VrK4~ob9gM^d(oulwPv=MyVz5ruk=X zKA05IX>)FR&bFM4oXxq@a<=lh3>U@poE;SRxN_dlok0V+vt0k%eLA1Bhl{u8Y|*Lo t+-Y2s_n9m{wI_FOW{(@0K2@$w+f=D$Sn9QDTU piQBO^9>CmKvYattSQ)cn3v7VxQT;4K-Czo;pHmo& zH!uJnqx$(38*qJ-t-S59C91=C)P)CPVI1q~mtj82>(L+gpgP=-8sSk_{vC5r_OD<} zAq+ybD~r03SS)~zF&o!6U6sMUsE&uBMmQSP!91*wo6rxx!L0ZYb)!FEZp>WKm|_@= zT7p `s(o!&Zi(ur zBWA%qr~xEmFwR7sw-Pl&DKX5yrp8AFo5Acwb#MWr@fJp65IaUE#9|QEMU9{hYNQ=e z?S>-%%o2W-!ehv4n1`s%S2))8(-gIo?P8gKO?7`NbORGn<&_wU+fXApidveJs2lza zLof|>!}m~2_>0r8vh61q>V}J>X1X%!{6_A0OD`F95RaP5A+D@?oiGnsUXzTC@DtQb zgj6x+IV^%|mxvx5kD9qPSQ1a79?M5K84Iyfbpy$$0eCl((HiYRb#xB(+}=Ws*sq$s zU?6IQq0S h^}pASak+&dyke@(^r;Td_Er8pf1{5~w}W5;d?6s2NVc0yrY0p7ozcMl+C%y5l`q z0#BkY_?@fw=TXq6%8wdx9n{h_LS3LO7Q}ee5+$MDA2V?(zKL3rvbF4zJda^|{>PEg zoi0FKa0Pb3EvO6Rh_g#k5Osq^Q0-%!HSsRxhIkIk)wb<2F+EzsP}GeSL@jMK)MNM} zdexv88EuMwsK;a|s(zKLUx%9FO{lf}1;f$QwM!L&`6-q|?UBZ=+#2&y?&Inw;LDU} zBCBg|*Jb_b%S6<(o9AVWr92+H<95`PhVc5+lt-gxpc3jv8l$GVC2G&S i(ttIOGK3+1K`iZC!%*5lk0zDYt$Zp0ds0(aDwL66B;0zYS zZ%~^nXJdO_CDcr{L-pSqH3NfC=S@J}xObV$yoH+Ty{OG~0rh!*4YgVBqB{B!{qYHE zru>@N3xy#2&Xh!**AsQ2L8v`312f}7cYFyJ)$_lWj7D}4L-8VN)7(d0$gioL%0SfA z=0P0~M~$cwYNQQNo3aB&;!sz=1T~-(=Qh;!QZXObH)qJ`jrBEV!6#1tX11IiTT>r| zWiqibaW>9s&W6L#XN{T9@x+#PhJJVYx3Wu>6Lo`yofVx8F_`O{7s%wozNobw<(z>U z;d0b&-GsStA8LwEpqAzWYG!Vtru-pJ!GP!N@i`blc{vWiov0-##;Cl!GfY`Bx=>%# z9vFj~iAAUjFGpSI9ao>~>JOqe(K*bDcTh`qAJzU5=E5h)J(-+sY`>jQ=XGzx{MREh zjEX$yLzNGs*2w>PJE90wxe973TcP$!chu62#9*A`>XV&2Py;xI!FU;q;{()r!EKp; zO=an}cIqpkHdjL|jh!$MC!?PGIj(*u>V~gk34DOMP)Iv_p;DNea&>1@RQnf@x4P+# zn&H>IWOM_YoIZEpfb$6I&QG8^xPqF}`xt`1qSi83d;1+RKWZsDqV`00)bW9+r5WYQ zuV6XK-f3hsVjm8{6Bv!PI@rz97q3x1j~}bu3oH+gf03``SpOxyl%VNoUtFK!35v@) z@vRBtdExKHGM$atg}3o6uHqAp^SowIS38Aq-K;%OZ?x&S8aLs4*tolW!~KedD0_O? z3)MoEv&LJCVK2&Ys3~5LT8b2`guAdi-o;va{#*34-*%@X|I7}4XmjMF7Y1XZu>np; zeT;sLn$oY(A0MGE^doBOe@7 F9#FxunW}^A$W~#LPQ;8ELUsHdX2!OI?GkmsjHyPoOG4e)5{$sj zs6BHG)$Wcf|Bgi{7xMDVX)0@=M)oYKqt2*z`3ThUd9J(`wWfPeGj-N^2eqa@qn?JG zL+w(O#ypf8qHdras{j6|8}&{mqdQ%Wy3?Jg5uU@`_&H|7JE%SIE%waB&L3uv_Z@E6 zbTn4x_*ATpsi^jkQT+sru#aCp)bZxX-tn5rWV9Bik^N`F*nu%P9!ua>OvUq<7w3<% zzK-uv-i4aV0i*4V&BidwZ=g0^sw*Et_4_$i!@x0`N!Gs}nII}Up`L;Ps2iDw9{d6G zW4^KW@hgwDDYwO7T!4}II%-LdVj!krd;G$ctB$ibRu^kf-vNX4{J%;j8rNY(`~-Eu zC#c6MA8!#&VI_P9>!UgtfD>^e>M1CdWM4E ;x71eGOYG#&TSxlb5{Ffs0 zv1|Ap>ID(Vv}nZo^++Qwfx6M>uqt-M7jS{A{|dDPk6k%zqAh!{I`s{a?PHQqGxr!f zV)P_V(1@l_vQu^$n^681^{TBp*-lv})RcNrGqD(Tqi>-`v e zu}fJ5i&3tLvDn$`G7C^6Jc32=G#0>zSO^2A+HxeSgId@LyWmjVgSvsJX?9Q4K%M_S z>O$wR0R~LB 5B1`*J8Au|ID-P2rFPU4z$2hI2ohxEmTM6QG4M>)QCKDSXXS1 zYQG%S{vbBPZ*Vxq&b5EUO2Jl?Z=&9a73XP*SpRw%8U751TH7Ryz(rUbx1tBnp*GXM zP)ky7zO8SDn%aJt6W>A2NGfWE&R{*fgMnD;Rr|PCzzN>WYyvWMIB 76~mX?7g!{gq1+COViM{NyBf8*w_p`K zwVe4^hnZI}Z5WCz@dNCLxmVgv*cY2qUWP2I`2y8(;wt;qYaZsOycpHr+n5*kyZSSz z3*UA1fvfERB385hI-x8T^|3aFqZe!8D%6@?#0b2B6Y&pMKOxyZ4Kwg%>KCCl<3rR9 zhOM!Cs0!*j9Z@$r026SEmrPeOcQG29t+g+Zk*J0%QT03UMb_{-wxV2Zy?rdFp)Tk{ z-QXoGi$7r;7H7lA?#^TkRXfa%-fzhiB=akJF!T+(%d22%%7ajQWGU+D_y}|271Vim zQ8VVZ!FE^_)h-GPV?FGSU0wMg>M^~F+~vZnR&c^I`!G6u`O|gU{notcizFBYT2c zlBhSWv8b7f!}8c3HNq*F50_&h+=_MZ1eU;TDcS>GP9meVsf{|JHEPOxqc+iE)CE(V z+fY-Nikxna;N?vG9dMH|?`CEeH}gc{>37(i)VJMgXY8eIc4iW=DCfN*)xj!PvDbMS zBdPxli(rxM_FY{YHNs)2DPNBo$$r#S-$YHl* P{w57yg9`-O)A*I&cUR@d|2fTkN)9$>LEXJ%M^7evOqeWRHCcnqnEsgRmSfbM;5D zF6H}J1EW)I``)R{zfPD(g$H*zFQVRXKVujMyl=nr6-K>?Ud9mIh^284YNR(XKR&>! zm}Reh{^L+L-W?0#1PsUJUNRms?_o#0fB{%xpY5ocvo+?Rz7J}uhhsiW!U$Z9y6`sC z<~@$uq(9(vH2dvlo`JgXD%8NdyUFOzKS5pK5;nyzQ4Px=zv~^u`jm^E=TXC+s2Ry}flolyV Uke~$!_8`sJ*cTOX5*1jrY*oj7;9k_7&L~D^MPdWiSQx!ubqY4f7}V!c$l5^Bi;4 z&RliuLj7p;;05Gk!TgANWv{$u`~3(DsvdQNLD!l85HeM++vl;Fb1>?~vJ`daDHwqV zaRy$&aO`!%-uOgRKdVr0&UaBSoHIC`y^w~(D0jQbj8Z;}gD5|`<+a~VyWh5d)!K^- zIpDp+UqdnYOFmk09M-_{U)iUiFIJ b+|l7DpYZf;!L!12NG#3e}<7tHXt;UA)nix1pZrBbf0RyW?NF`bVg}6!48*qEe{- zy-mre<2I;{<53-rLY*)dJ@_{I<0(}8Gx!YNLM>IUd;GqLPg6b$OlC%6GR@bNHNY?N zJKT!=72TWh9lkh)=ZRYcPlx%C*g$A%TT=HUD)ISa_E6R)<+`Q=p>&)&r6knL$e$=p zEF+Y*V=9g$D!RJ*xKPi(MmdF0`obLy!2p888R-!}*|Zsd=Tk*fqL(tH6xz*3?T2;b z_hA(A8u=7#Kq$?jteL7xTqiyy%IgB*98jv`R6Ym!oWv>>T-uI(s5|G{^+m1W(WecN zefU2~kL_zjIYRqNiIw_K@&?jLE?4}H{9s}% nS-yeEe6eq?L7is)D!3USQ zk72|F;#Xn-bxMWFkH$L0bA+CZ{)AF);$@BxC6w+H&B(VR^!G>eJDG2YH_7X5rQ{=c z=a`O^_2qJ=tN%j>NlPhDA?A{ALR?TKDTdfh{RQGxLMc0*A{r32h`rR6#NP<-4GKRK zqbXD;!pQ$Mt*21RRs4wwLE>U~Yf1Sq<=jM9S3fPImHqZppS)gLuMm3wD?Ll(&&2$H zPenZnopB{9ogp4) -*a_^$&V!8ozQ !!nq<*+`lKO1q|3L5e zuJUu&m`_F%LB28`aCNWX$HW}!_ToBxg2~8tk&NGb$KZJC@}p8#B5y{HzkXAnkNhlD zI)cGA|KIUn=0FKz1+j{QSzO~rxRtt1*aMZ;kl$gm89zUBc|Yo(rW54#1=NoUpR11} zf0X tP3@haBB3b-8m5 AL1C|W9mM`+QeG&Wl?DZ zPA2jYttpSiQN)6bqxK6+#{6GWBPy>DyWPQD)ICj|$yB9W1FvIkoR3wWHo%H5|1GZO z*hhp?M `hIW+ny@|KfNv zB7_*{+NM)~j{NJye)3E3U0mvpcO$Q~Mc03pLQPlE3A<9ah?qfs27XP%xZ@YeUn05? zO7BpA3_Tc2{74KU&JvBOzeThnno#bE29=uP0>T?j;V>~uwWMBDPQ-hdgl`kY2!BGU zKlM>WZ}M-VQg3`j{7!xvX3nU!zobM`o<(_xt80tDx_luRirQU! X}f(By*VO%E7#Z0v$)On zEZwH0Pfef3k 1eD0={{Ok!;zPR&7ydslK#K@p%$`U;-@3gcOSj$0ZER25 zoIWMvM$)!3lpXfYr*U(hxE`Lq!xDPej{L_di>#Bjli_Y*p#1P@deW!(`rPtm4K5i| QVz`GfO--NW(VUup13Sr{Hvj+t diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ar.po b/projects/plugins/wpcomsh/languages/wpcomsh-ar.po index 3352f95b5bdc6..5d18b9e2dff4e 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ar.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ar.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-14 20:10:07+0000\n" +"PO-Revision-Date: 2024-05-30 16:54:04+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,30 @@ msgstr "" "Language: ar\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "%1$s على %3$s" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "يمكنك تعديل الجرافتار الخاص بك من صفحة ملفك الشخصي." + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "التسويق" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "عذرًا، غير مسموح لك الوصول إلى هذه الصفحة." + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "تعمَّق في عالم قوالب ووردبريس.كوم. اكتش msgid "Find the perfect theme for your site" msgstr "البحث عن القالب المثالي لموقعك" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "روابط" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "بضع كلمات جذابة لتحفيز القراء على التعليق" @@ -246,7 +265,7 @@ msgstr "الخطط" msgid "Hosting" msgstr "الاستضافة" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "جميع المواقع" @@ -438,8 +457,6 @@ msgstr "استخدم أداة الاستيراد الموجَّهة في وور msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "تفضَّل بزيارة %1$sإعدادات Jetpack%2$s للحصول على مزيد من إعدادات الكتابة المدعومة من Jetpack." -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "تحديثات مجدولة" msgid "Verify the email address for your domains" msgstr "تحقق من عنوان البريد الإلكتروني للنطاقات الخاصة بك" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "إعداد الموقع" @@ -473,11 +490,11 @@ msgstr "تمكين مشاركة المقالة" msgid "Install the mobile app" msgstr "تثبيت التطبيق للهاتف المحمول" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "لم تتم استعادة أي ملفات." -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "لا توجد ملفات في قائمة الانتظار." @@ -533,12 +550,12 @@ msgstr "فشل استيراد SQL" msgid "SQL file not exists" msgstr "ملف SQL غير موجود" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "لم يتم العثور على استيراد النسخة الاحتياطية." -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "ثمَّة استيراد قيد التشغيل بالفعل." @@ -674,7 +691,7 @@ msgstr "جهة اتصال قديمة" msgid "Enhanced Ownership" msgstr "الملكية المحسَّنة" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "أصبح الخيار \"يمكن لأي شخص التسجيل\" نشطًا حاليًا. الدور الافتراضي الحالي هو %1$s. %4$s يرجى النظر في تعطيل هذا الخيار في حال عدم وجود حاجة إلى التسجيل المفتوح." @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "الملف غير موجود" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "يتعذر تحديد نوع أداة الاستيراد" @@ -736,8 +753,8 @@ msgstr "حدّد اسما لموقعك" msgid "Claim your free one-year domain" msgstr "المطالبة بنطاقك المجاني لمدة عام" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "مُهدًى إلى مؤلف الموقع" @@ -835,7 +852,7 @@ msgstr "اختر خطة" msgid "Personalize newsletter" msgstr "تخصيص الرسائل الإخبارية" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "يتعذر تحميل الفئة %1$s. يرجى إضافة الحزمة التي تحتوي عليها باستخدام المؤلف والتأكُّد من أنَّك تحتاج إلى برنامج التحميل التلقائي من Jetpack" @@ -1046,27 +1063,27 @@ msgstr "أنت محظوظ! لقد اختار لك مصمِّمو القالب ا msgid "Uncheck to disable" msgstr "ألغِ التحديد لتعطيل" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "معرّف موجز Spotify " -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "معرّف موجز Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "العنوان:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "موجز RSS للبودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "الاستماع على Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "الاستماع على Apple Podcasts" @@ -1078,114 +1095,98 @@ msgstr "عرض المعلومات حول البودكاست الخاص بك وا msgid "Podcast" msgstr "البث الصوتي" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "تحديد تصنيف iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "تعيين تصنيف البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "تعيين الكلمات المفتاحية للبودكاست" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "تعيين صورة البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "نظيف" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "نعم" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "لا" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "تعيين البودكاست على أنه صريح" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "تعيين حقوق نشر البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "تعيين ملخص البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "تعيين مؤلف البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "تعيين العنوان الفرعي للبودكاست" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "تعيين عنوان البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "هذا هو عنوان URL الذي ترسله إلى iTunes أو خدمة البث الصوتي." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "موجز البودكاست الخاص بك: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "تحديد تصنيف البودكاست:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "تصنيف المدونة لوسائط البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "تصنيف البودكاست 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "تصنيف البودكاست 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "تصنيف البودكاست 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "الكلمات المفتاحية للبودكاست" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Podcast image" msgstr "صورة البث الصوتي" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Mark as explicit" msgstr "الوسم بأنه صريح" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast copyright" msgstr "حقوق نشر البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast summary" msgstr "ملخص البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 msgid "Podcast talent name" msgstr "اسم موهبة البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" -msgstr "العنوان الفرعي للبودكاست" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "عنوان البودكاست" @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "البث الصوتي" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "تغريدات بواسطة %s" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "الخطوات التالية" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "قد يشكّل ذلك خطرًا أمنيًا على موقعك." -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "يسمح للمستخدم بنشر محتوى." -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "يسمح للمستخدم بنشر/تعديل/حذف كل المحتوى." -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "يسمح للمستخدم بالتحكم في طلباتك ومنتجاتك." -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "يسمح للمستخدم بالتحكم تمامًا في موقعك ومحتوياته." @@ -1239,11 +1240,11 @@ msgstr "يتعذر فتح ملف ZIP." msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "تم تعطيل CDN الخاص بالصورة نظرًا إلى وضع علامة على موقعك بأنه \"خاص\". إذا لم تظهر الصور المصغّرة للصور في مكتبة الوسائط لديك، فيمكنك التبديل إلى وضع \"قريبًا\". تعرَّف على المزيد." -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "قم بإهداء المؤلف خطة ووردبريس.كوم." -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "أهدِ المؤلف خطة ووردبريس.كوم قبل انتهاء صلاحيتها اليوم." @@ -1253,11 +1254,11 @@ msgstr[3] "أهدِ المؤلف خطة ووردبريس.كوم قبل انته msgstr[4] "أهدِ المؤلف خطة ووردبريس.كوم قبل انتهاء صلاحيتها بعد %d يوما." msgstr[5] "أهدِ المؤلف خطة ووردبريس.كوم قبل انتهاء صلاحيتها بعد %d يوما." -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "قم بإهداء المؤلف ترقية ووردبريس.كوم." -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "انتهت صلاحية خطة الموقع هذه." @@ -1281,37 +1282,37 @@ msgstr "تنتهي صلاحية خطة Creator لـ %3$s في % msgid "You have used your space quota. Please delete files before uploading." msgstr "لقد استخدمت مساحة التخزين المتاحة لك. فضلاً قم بحذف بعض الملفات لتتمكن من الرفع." -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "تغيير القالب" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "تغيير" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "تحرير الصفحة" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "تحرير المقالة" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "تعديل" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "صفحتي الرئيسية" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "بدء تشغيل" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "التحديث" @@ -1335,7 +1336,7 @@ msgstr "تنتهي صلاحية خطة Starter لـ %3$s في % msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "تستخدم الآن PHP %1$s التي لا تتلقى تحديثات الأمان بعد الآن بدءًا من %2$s. يرجى التحديث إلى PHP %3$s أو أعلى من خلال تغيير تكوينات الاستضافة لديك." -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "هل تستمتع بهذا الموقع؟" @@ -1365,7 +1366,7 @@ msgstr "تم إنشاء وكيل فقط: يمكنك رؤية ذلك نظرًا msgid "You do not have permission to access this page." msgstr "ليس لديك الصلاحيات الكافية للوصول إلى هذه الصفحة." -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "عيّن نظام الألوان لديك على ووردبريس.كوم." @@ -1386,9 +1387,9 @@ msgstr "قدم ووردبريس.كوم وظائف وأدوات مثبتة مسب #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "التحديثات المُدارة بواسطة ووردبريس.كوم" @@ -1431,56 +1432,57 @@ msgstr "المساحة المتوافرة على القرص" msgid "Disk space used" msgstr "المساحة المستخدمة على القرص" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "انقر لمزيد من المعلومات" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "احسب العناصر في التصنيفات الفرعية إلى أن تصل إلى الإجمالي الأصل." -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "الحد الأقصى لنسبة الخط :" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "الحجم الأصغر للخط" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "معرفات التصنيفات، مفصولة بفاصلة." -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "إستثناء:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "أقصى عدد من التصنيفات ليتم عرضها:" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "إذا استخدمت المزيد من التصنيفات على موقعك، فستظهر هنا." -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "تصنيفاتك الأكثر استخدامًا بتنسيق السحابة." -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "سحابة التصنيفات" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "تم فصل Jetpack وأصبح الموقع خاصًا. أعد الاتصال بـ Jetpack لإدارة إعدادات رؤية موقعك." -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "تحديث الرؤية" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "بدء الموقع" @@ -1626,51 +1628,51 @@ msgstr "اعرض أحدث صورك على إنستغرام." msgid "Instagram" msgstr "إنستغرام" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "السيرة الذاتية" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "العنوان الرئيسي" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "صورة" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "عدم عرض الاسم" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "عرض بحجم صغير" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "عرض بحجم متوسط" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "عرض بحجم كبير" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "عرض بحجم كبير جدًا" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "عنوان URL الخاص بـ about.me المخصص لك" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "عنوان المربع الجانبي" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "لن يتوافر المربع الجانبي about.me بعد 1 يوليو 2016. سيعرض المربع الجانبي بعد هذا التاريخ رابطًا نصيًا بسيطًا لملفك الشخصي about.me. يرجى إزالة هذا المربع الجانبي." -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "لا يتوافر المربع الجانبي about.me بعد الآن. لإزالة هذا المربع الجانبي، انتقل إلى إعداداتك. لا تظهر هذه الرسالة أمام زائري موقعك." @@ -1691,71 +1693,71 @@ msgstr "عرض ملفك الشخصي about.me مع صورة مصغَّرة" msgid "Unable to fetch the requested data." msgstr "يتعذَّر إحضار البيانات المطلوبة." -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "أنشئ موقعاً أو مدونة مجانية على ووردبريس دوت كوم." -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "إنشاء موقع مجاني على وردبرس.كوم" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "يعمل من خلال WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "المدونة لدى وردبرس.كوم" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "موقع ووردبريس.كوم على الويب" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "شعار وردبرس.كوم" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "إنشاء موقع على الويب أو مدونة على ووردبريس.كوم" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "رصيد التذييل" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "الترقية إلى إصدار الشركات" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "إخفاء (خطة الأعمال مطلوبة)" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "إخفاء " -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "إفتراضي" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "التصميم بواسطة" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "بواسطة" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "الثيم" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "بكل فخر مشغلة من قِبل وردبرس" @@ -1783,7 +1785,7 @@ msgstr "حفظ" msgid "Activate & Save" msgstr "تفعيل وحفظ" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "إدارة إعدادات رؤية موقعك" @@ -1901,140 +1903,131 @@ msgid "Email" msgstr "البريد الإلكتروني" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "الاسم" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "استعلام حول الحجز" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "الحجوزات" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "إظهار التعليقات من:" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "لون خلفية الخط:" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "لون خلفية الصّورة الرمزية:" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "لا صورة رمزية" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "(15 كحد أقصى)" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "عدد التعليقات:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "لا توجد تعليقات عامة متاحة لعرضها." -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s على %2$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "غير معروف" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "عرض أحدث تعليقاتك على الموقع" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "أحدث التعليقات" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "لم تعجبك أي مقالات مؤخرًا. بمجرد إبداء إعجابك، سيعرضها هذا المربع الجانبي بالمقالات التي أعجبتني." -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "في" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s في %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "إعجابات المؤلف التي سيتم عرضها:" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "شبكة" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "قائمة" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "أعرض كـ:" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "عدد المواضيع الواجب عرضها (1 إلى 15):" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "قائمة من المقالات التي أعجبتني مؤخرًا" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "المقالات التي أعجبتني" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "اختيار الأغنيات" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "مشغل الموسيقى" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "مشغل موسيقى متعدد الأغنيات" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "أصَوِّت" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "وضِّح لقرائك أنَّك صَوَّت باستخدام ملصق \"صَوَّت\"." -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "يمكنك تعديل صورتك الرمزية من صفحة حسابك." - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "النص المعروض بعد جرافاتار. هذا اختياري ويمكن أن يستخدم لوصف نفسك أو مدونتك." -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "رابط جرافاتار. هذا عنوان URL اختياري سيتم استخدامه عندما ينقر أي شخص على جرافاتار الخاص بك:" @@ -2042,120 +2035,121 @@ msgstr "رابط جرافاتار. هذا عنوان URL اختياري سيتم msgid "Gravatar alignment:" msgstr "محاذاة الصورة الرمزية " -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "الحجم:" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "بريد إلكتروني مخصص:" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "حدد مستخدم أو اختر \"مخصص\" وأدخل البريد الإلكتروني المخصص." -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "سانتر" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "يمين" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "يسار" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "بدون" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "كبير جدا (256)" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "كبير (128 بكسل)" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "وسط (96 بكسل)" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "صغير (64 بكسل)" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "يجب عليك انتقاء مستخدم أو إدخال عنوان بريد إلكتروني في إعدادات المربع الجانبي لجرافاتار." -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "صورة رمزية" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "إدارج صورة رمزية" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "اختيار صورة لعرضها في الشريط الجانبي الخاص بك:" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "نشر حديثاً" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "عرض شارة منشورة حديثًا في الشريط الجانبي الخاص بك" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "حجم صورة الأفاتار (بكسل):" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "عرض كل المؤلفين (بما في ذلك المؤلفون الذين لم يكتبوا أي مقالات)" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "العنوان:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "المدونون" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "إظهار شبكة من صور مؤلف أفاتار." -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "شبكة المؤلف" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "موقع خاص" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "هذا الموقع خاص." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-as.mo b/projects/plugins/wpcomsh/languages/wpcomsh-as.mo index 6c0ae4bc10830dad8d0943e5ecdb17d2cea01f9f..134472f5411768ab6af48583effb7f0ca4511510 100644 GIT binary patch delta 1868 zcmY+^ZEO@p9LMp0PkNL-Xj`C#Q{WJ(0<}-1EuJD(p@0I7sWE9vVi0JER2qtUw!B!X zk!p;Za1=pbRmz^>!2lPkZ6cUx)EJ(`7X)L>5{<2>@PZK0Xv+6@H%)Z1|NZQLc6MfV zX76@YT&wVYES}J3lqTXXVt2@FGv;S=qI?oIn}tJoJ6^&^an$7tCYntmk2#kjhppi> z0iVX(uoZd4p22)<%jBMIb2qx(jUME%w>hbUJuZLWx!=_vLJfS>IgFa~7np VLsJ^50SY-oza9%>H#1VV=^BJe-GxE{~yRz63Quqsv#}9pufZ=hnOXn_RvH_1rdO z2 {I8LsE*E|2EK@z(1`O7)I_eMmiQ*F#%z{J z?V6D)Ye7B#EPA@p$%SV0GAe%+EAb8Fupv(B_;Z(kjT^`>pxW2-FqgI%l`luV$ZF?P zsEN0t+O0=@6VK ?-gP&Qp=SD(%fCf+FoM(YPprj4eiG`i z5q1A1)Wmk8UT8mRpkJ{J$58FcINgJF9v9l{R@8uTY{MSZ8;rX88!jKiLhAE5-HkI) z6KX)UZ$W+aZO9z03puQplltF__4t9yz3<({&!`8l;**$Fl ?c z^@ce#(*MLvT!atfS&XBeYn+_vXA?d^z8zU9&rWcmH@SeC;SJn}W0?lFZ%Sr>LDWi} z#xppIYCp*6s{afb%YHy@={3}rhDo@zD5`xO>f>y{N~4qITwJCij%wIanuuga3iRwe zLS LFQX)n~i85k^CZ>Pj z`oxj&U#a60uV+P?J32eN%A;K!FGkmOZj5f}cp e2L6ZiN^`1SQ Z6CRHbh+ Nz=46(v?&)uw*Z|&`1Ak( delta 1810 zcmYk+TWphM9LMp0yRB@UqYUb>n?TutF%DzhWE&fY1%e8SjKmP|6rvonuwImd@q$;t zaDhP`WhfaUMC}qn09S&7f?f$Es4*H6Zp;f8BxEMLfCPwv@cp&V65qW4=kpxi_c^}p zNaMjq@1OC7{l?WzJWm`An)N7OM8b77WHtq_;aI$ji}9f=caAYDp}gGrI}PB!##U z3$O=y#gh08?#P!t+v^(kyM{jGwqqovm_c ^_fAB*u0j>i#K zAEZ+K7Gt4#W>GSFFqW$@t9I671NF09c{OSUZ=wcx*OfP8gmMx!QO~u1 T6V-;RPZoBEcjp}F^HSj&ugbLUOS%R8K1hv&sT!B+v zdlGrYwxg#GcDaU6FiiQ7D}ROD_AQAzJmbpea6RSAr~zwuiL5oC$}Ok`%yV|3Cj1iW zxs|AIVr`iHpF`$tDwg5_)K2_`QM`fW0al71P=3t8wcz_KOC6p nt+ zKjgN`viyMcsP>ttaXZV{|7XecP*H)qQ5}7OsvpAV@G5HNw_N=&s-plu3ALBwT%3XG zcpa+!Gt>l+qZW7x)o%ff(=ev}*MnUowb+e1^X;es`*0%;pjHwbm#>eY$}!}&X(ZLy zhMLeDsP+`<>;Dj$v!#*SPLQa7Z-`7AnV($6ediO@i^b(;tFQ{y@m5s*KAeh2Q1AbU zjd%~W!fGDU|3*8u;~M-O`%v$#n~>|rvpr Q9JZ1 z{)U@T&$ZI1`YvP)dkb}>Nz{? 2OhH zStZ#Sgs$c3M9~DViyX(2yOxpG5eo^8&N ?G L# z6R#0k>np_nFa1iJhz=q_XoH&x4%rqF`ovZe6Nv_5^wNF?U11U~A@uch5<2~Q;$=-t z|HSR-FGG(?mn3_8H@vrPOR_hW?H_YLkiAfn2t;>oS-)w+wp3wVqBa#z_Qva)Yg6gF z;i}Ta3-RWrjzm*OQ(HDtdNEk>gP+;sXU_P8AN!fl{mdz42G3@HE$a+r2cmxmYxHW| Y&+y!7fAD~xIZ1Oa)9+`#iE99R3fdRD(*OVf diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-as.po b/projects/plugins/wpcomsh/languages/wpcomsh-as.po index 0949010b5f86a..9b56f717c57d8 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-as.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-as.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-14 20:10:07+0000\n" +"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,30 @@ msgstr "" "Language: as_IN\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "ক্ষমা কৰিব, এইখন পৃষ্ঠাত প্ৰৱেশ কৰিবলৈ আপোনাৰ অনুমতি নাই।" + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "সংযোগবোৰ" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "" @@ -246,7 +265,7 @@ msgstr "" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "সকলো ছাইট" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "শীৰ্ষক" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "হয়" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "নহয়" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 -msgid "Podcast image" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 -msgid "Mark as explicit" +msgid "Podcast image" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 -msgid "Podcast copyright" +msgid "Mark as explicit" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 -msgid "Podcast summary" +msgid "Podcast copyright" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" +msgid "Podcast summary" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "পৰৱৰ্তী পদক্ষেপসমূহ" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,21 +1240,21 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1277,37 +1278,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "আপুনি আপোনাৰ খালী ঠাইৰ কোটা ব্যৱহাৰ কৰি পেলাইছে। অনুগ্ৰহ কৰি আপল'ড কৰাৰ আগত ফাইল মচক।" -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "থীম সলাওক" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "সলনি কৰক" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "পৃষ্ঠা সম্পাদনা কৰক" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "পষ্ট সম্পাদনা কৰক" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "সম্পাদনা" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "আপডেট কৰক" @@ -1331,7 +1332,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1361,7 +1362,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "You do not have permission to access this page." -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1382,9 +1383,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1427,56 +1428,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "বাহিৰ কৰকঃ" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1622,51 +1624,51 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1687,71 +1689,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "নেদেখুৱাব" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "ন্যূণতা" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "প্ৰকাশক" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "থিম" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "" @@ -1779,7 +1781,7 @@ msgstr "সংৰক্ষণ কৰক" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1897,140 +1899,131 @@ msgid "Email" msgstr "ইমেইল" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "নাম" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "দেখুৱাবলগীয়া মন্তব্যৰ সংখ্যা:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%2$s সম্পৰ্কত %1$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "অনামা" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "শেহতীয়া মন্তব্যসমূহ" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "গ্ৰিড" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "তালিকা" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "" - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" @@ -2038,120 +2031,121 @@ msgstr "" msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "কেন্দ্ৰ" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "সোঁফালে" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "বাওঁফালে" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "নাই" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "শিৰোনাম:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "লিখোঁতাসকল" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "" -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ast.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ast.mo index c18c3b5cd5b877a09aeb8059a8ca4c640fa900bc..c58ea8a9137bf7952c6349792a8eb3732a729408 100644 GIT binary patch delta 1011 zcmXZaKTH!*9Ki8cXcdGa8ZjZU Riyd+QKChW5g;b!tt d@pj#F5N4;xiQ zZ4W86LPr-JYg?3R$8SiN+Q2B*H7V7Mt;iiz4CTNC%Dfcr!~xrX0_6f{u@x^OTPe?u zm$8NXMpNbghIj11ecZvoGRnqlC<|X(-=l2&5#<73up7VIyoFmze;dmBT__bw*#4xo z*Y@WsG^ErcC^sEPDb+cYgU+MIODGq)g>t}clmnJf<}G6zKC%6;Q0Bd};~#J<`6ryh zA1Lc9!_-$cIF227%H{>!M!tYj@ >NmRh7v%yo)LG{HDCd+> z_PdFUcdJD^;jZ-oN(CO{1U|L-pQ;)d@@ gIwmdq " +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "Perdona pero nun tienes permisu p'acceder a esta páxina." + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "" @@ -246,7 +265,7 @@ msgstr "" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "Tolos sitios" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "Títulu" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "Non" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 -msgid "Podcast image" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 -msgid "Mark as explicit" +msgid "Podcast image" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 -msgid "Podcast copyright" +msgid "Mark as explicit" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 -msgid "Podcast summary" +msgid "Podcast copyright" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" +msgid "Podcast summary" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "Pasos siguientes" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,21 +1240,21 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1277,37 +1278,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "Acabesti col espaciu disponible. Desanicia ficheros enantes de xubir más." -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "Cambiar d'estilu" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "Camudar" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "Editar" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "Anovar" @@ -1331,7 +1332,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1361,7 +1362,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "" -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1382,9 +1383,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1427,56 +1428,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "Escluyir:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1622,51 +1624,51 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1687,71 +1689,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "Anubrir" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "Predetermináu" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "por" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "Estilu" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "" @@ -1779,7 +1781,7 @@ msgstr "Guardar" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1897,140 +1899,131 @@ msgid "Email" msgstr "Corréu electrónicu" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nome" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "Númberu de comentarios amosaos:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s en %2$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "Anónimu" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "Comentarios recientes" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "Llista" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "" - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" @@ -2038,120 +2031,121 @@ msgstr "" msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "Centru" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "Drecha" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "Esquierda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "Denguna" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "Títulu:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "" -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-az.mo b/projects/plugins/wpcomsh/languages/wpcomsh-az.mo index 4fd43232beaf9661f99d212bdf9e4ca0057beaa8..9dbfd2e3233608a2b21ddd5fb11c93306425bca6 100644 GIT binary patch delta 6006 zcmYk;30zfG0>|+K4`fkML@^2Vp@18U;)3IjVo6QzscEU0sDy$NrqI;YbjC{C1T(a8 zt+28hdyUITr3o`?xin-_T8+zO~jb#+;JL>1-z3m&){~vOP3&J(*mlzxKRwy?$`g1bN?cbio9^_U1fYa*b!$ h%>-B7;+!t*l{4}t(2h365) IMX`)TXsEt)@wHoY<*tC=+ebcmBt*wG9K?Ol{)u`FDN(xFq2BZjr zyFsK2QS3?(Da=Y-i6VmZBXsRbH!6q=@%eY|z?t7Y_vPF>cmDLR_pg8QqP&^i>@<^i zFpF)MN4P-#7<2f;_5X7DKio!tmc`P??N~(B>*Ljd0nXzw%-|yS;N84MR`kps(J@HJ zYL{6renh%#6ASnaci?YiPs{jjL)5$??!$wwe-w3)I_}0 z?;fRK=JVc$ejJmQZ z)J8K{!t 9k?zP+xu#FW_aD zzd#OaYjHDst@k*sLE;FZZS~jnoQ^lM1K~6+{f>~BBlH2fwFyGc3^5;vxzWPetvr35 zh#R>f{Uxi%Pjds~v$W0-CkgF*l+bgE7$Js %3$s `ob&EI_ndRjeX#dMzxRv% zoUfY&tTG&7e#S)OieO{%C|_@?R%3QX8bg!Wg`xNn-j0W`5!PTwyn=19ZA)W%;Xv$! zk6;RJz*bm=P4EY7VT@yLP#8=@#BB@$$D!(37=l}@?_vP;aty+~*bon36dtqf7crdr zRpiHna#!`!-kON&Cly<8f76eGIv9-}oP!N;9%_aQQ3LxU#$X9DX0si2-eK!8)cGe- zD^`QL?h +sq6WALHJ~! S%+ zLfvRLs-MHC8-9iw@LAOP7cl~_;RD#Xjk^LlZCHPetdIts__%c$s^jNTpKnI(?k%Wi zxZk!P!%oz{wDkZ^(ttxy6Pk#6l$oeKlaE?~r>!Lp1&w?i>V~hNF5H2d$p@&BA4U!2 zH0u0ww*CWZ0GCkLMSI;x&>nT;E~p#!L#@~ys7*Wt KUFuU2q09 z Z)%OSM&k(1YlqKbK57Df?Oj7q{fAp)t*IEU_x~;mdL8aZE%`&JB`>n= z&!T4dGHNBtkbP<1LoMy6sOwH3uev#pdPIS-Za)oC*R@5pCtv`ksGa+pR0 A Aqbc- &E!=YG=m+erL9DDSdCiBZ%`N3+V 9+el*vxF~)RrXPS&!kvp*wPD5RvhuXYF7@_yyp}-qticy nh?kE713 zK~~c=;S~wSeyEOzq8`Oa)PSd>29$&Sun?Q!cGTww(9w*K+J=*;3(lZ!{F80>ba(#& z2}M@dbVKclsi+$lqGq%dHSniU&-?|{jkehKcd#w>9jHBWygTc!j%sPpQa9@1{xOQi z!PNWXcwB_qeAU)V7_akt8pEoa?#LTyreg>`gH3TYs^2ZBiS9%VtOA?kiJq*#MtqS5 z&EzWb_r`d7@$VSMp bx*^nr6@nHL#wj_7SL+n~3UnHtG=-U?e_ vpGED7 zOQ-?e&MTmS$Dvj(0VDPP_pK}N*9klDK{jgSFQ8W74Qn}S#)nb6{c~GCffJ~o!7}W} zzeT#?S=9MIq9$_18aBYK$75^mZw64%ZoMBhlR2mvFTx01h1y)Nqh|gddhsA?rsq*J zx`wSWnCGDz$D{g5LVZ32HSp2)^YQ4kqG1XJbzF$rG|%C9T#M?k7H`M!L9U6|hI)o| z7RFLvhT7#@Q7gC)qwpl^8}JuokxW3EyBX8cSbudqnFigc2sNOWP)qnOYGuk%yZaF8 z8Gep>G+!aBYA&GmP9k3#`n F&VBqHZ)9HLxt(o{M^93o!>*pdP_h)On4Ey8TC@R;Z0bK}(cs9gVTn z=b)b9N{qoZs1C|eGpR%k=&1D!YQ?UgR?OVt-Z&h!0`VA#J+J`#U?Mv2P#8<$D|{SN z?sPlehAfJyz;+lk% EVIjHj&U~|3y zODX7rQuM>EsDZp~>mO2%CptbQE6Bgduf#)iFt)n=qZ=(IPZ1sK$aQj76^?x_|NkA$ z{mu8}6Y@5Bgj^u?2j8y7!>CT+0`j%};0tU|^i{f@%qO=V+Cu?cSA&ztNTN6F9in46 zX~5^sD-`@F48+Gs{qX~ZAlmB= tw^*s@-^gJiF*iwA8v8^0o_iGO`Rl%F6e zM8|*i{PjQHW-30S?*bjm$@_IBz7 k~s36ZJ%eoWR0>8&|=*~<@cnoZTtv(knZGF@*8=M z_>=nM5QTKomTV+1k@{l-g& J*TfdcyR08WhwXIX|3Ta6?+qR#v8`0O;%cOvW zkUx{lqyxz%$H;y%lO&K$WGJa7!K~y&{3qF2JgP-|XELQ<$T*_i(x2$K%cbsjC|A8^ z>rY~+EswS8`|Z3fi%z7ctq0>xGKTacSwzP)@^SqJZOjbNLe>_hi zhMcnvC$Sevv-PKO7TH0n$a_Rb4yhogRN**E%E$+r@}m^Sle @QPqJ#`8iny z*|{@)tG$UH-?!~Q@hd(VSKcZwKff@+TbMWBo0*^G&CM(DX3n0Sw;*eJ@y5=PzSZ$- zJ-+3gKlBt&Ns4Ni(#@OFwNJOMeY*DaEltV@^nKC&(V&ofGTol%Z64D%!1u(!asIyM zgJb>r56-MuU$L!n{p`%bify?G-f8o_4<9I iVupoz{s-HUjcWh^ delta 6394 zcma*rd016t0>|+K7jOX*B~elIB1?)Qi#rM;ikeGcmRi*4RW5Od >VmJdv@9>>@oiOWSuHydY=y0{9d^bT48y_L14m&u^x^<~6no-+ zOvkg>3FA6iRvXO3_Lk+dCQ!(sVkTaLYs~(u*oyrhje%Sp#C{mIz_u8QoiG{`Ono-0 z?PHKjty@v|sWQ$(-Dd%|=lRw{6m)}C=)mn5g1b>Yd;`_6qZo^yBb~8AxJc)9H720W z?~NL-^%T_7m8kufQFF8dQ}8VuiI-6g8^J=+@jP_m zH0+J{U;?g3HQ)%U0mo72pFuV7GO9t27{*_P@EE%X9Z*9WgPOZ|%)(5}$GLbN9z>1E z52*7lqaM_ut9_p&)B{sd4bDcLKOQ6TX1pCeT^WD%_;o7OvZLn24~(CoZhYDtzk*uj zLHy8M$D^)G!=5<6>`zBE*p2GYM$}YpN3ET=P#r(%GljFLIs6IrK#i*|j70S$8rAY7 z)C03n=Z`S^*P|M61M0dvQB&YUJ$M0Xq@F-6;ti;&@*SbTf7S(l=)ut()rHBZ3;Lsa zdIRdg1*o+$9W&93`Yx=;K-_Hhw<3M9_M@&liE7v>)Rde 27~mVp02< zs5#3w-h%4!3}dme9P_BJ#z$~3ssoeaYzt8Ln`xYFd;r_({a;Q&Yv4uHP;E0FL=F83 z)X<+nofjBy_c#JIGM$kHZS_FSX)fxzJmgbhO+z)j7IhyV>biQ>^L* 8v?iyqYbeK+b$xWv@2F>XaQ p1& zqu4)$6?hU0aSAWJ9=HwDaSu+%A5cA=+{1oADe8W+QRm-OH8rtuW5RR_rfA-De5vKC6tc z`Y1T4cmrK{0H U650CU;jgc^xUsD{nx#kT;fQEOlY2I3}E2VO&s
" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "" + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "" @@ -246,7 +265,7 @@ msgstr "" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "Títol" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 -msgid "Podcast image" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 -msgid "Mark as explicit" +msgid "Podcast image" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 -msgid "Podcast copyright" +msgid "Mark as explicit" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 -msgid "Podcast summary" +msgid "Podcast copyright" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" +msgid "Podcast summary" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,21 +1240,21 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1277,37 +1278,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "Heu esgotat la quota d'espai. Suprimiu fitxers abans de penjar." -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "Canvia el tema" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "Edita" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "Actualitza" @@ -1331,7 +1332,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1361,7 +1362,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "" -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1382,9 +1383,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1427,56 +1428,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "Excloure:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1622,51 +1624,51 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1687,71 +1689,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "Amaga" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "Predeterminada" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "per" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "" @@ -1779,7 +1781,7 @@ msgstr "Desa" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1897,140 +1899,131 @@ msgid "Email" msgstr "Correu electrònic" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "Nombre de comentaris que cal mostrar:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s en %2$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "Anònim" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "Comentaris recents" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "Llista" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "" - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" @@ -2038,120 +2031,121 @@ msgstr "" msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "Centrat" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "Dreta" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "Esquerra" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "Cap" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "Títol:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "" -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bel.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bel.mo index 2d7270e50db9b423c0a4b6dcecede61a48024f70..0a58d8ecbb34f75321a3de1a4ed7f66bf94d94cd 100644 GIT binary patch delta 950 zcmYk)Pe>F|9KiA4>W=ODr&e3dHo}qEv^I2i!CE&p&6JA%5R!EX5mq8tc45h4FHKop zj1DnJ>k^%X{7SepHXj6p4`EYyQW z;yBF5Hn<$MHX5)s`cZ3R2dV-4k@adF#c;fY9rXT(vZOUMaTtbKs2hw!t>($7AuPZI z^rF_xW2gr#!?w86=trHm51Ae76t={UeeL_kqVCrleQI$w1+{224#k_X9sU7zd^M`a z4Q78c>inIi{vfIW$IS6ln8^M)WLB(B{p>X}2Gubas$-@77=QI(78P0pwWtR!M%6FH zZny%qXm+9&-*MECe~(TK>TmxInSfK+FGhWOcNsrGHRyX}R;|th>_1w^577KmQA361 z+K0OFVpNZx!6 wpl0fWq2f~p_r zqoAS7LEZQ!)Lh+$QRqf5&P6Sv)2O+>h-&B+R72YgwpVv&)P2%01qY+1(u2BwF80C) zQP1&hqEJC$7wSf78TO4bQLo=5)Cg6eZd_-aj~bCh=J*O!N1j9VbStW%@1dsjIO_UO zaTtDM*ZZubA@&2(up )0QSYOoj8^M%GIQ9W%y zt@2mQ{uZ3d{%%~0(OEo?=UaOy=z;^Np1fl`Z46?(VyN$eTBI2mjpHy9i%>nQLyf@0 zrhXM_k!?hc#BOxrd#Km f{sN?ylo=ig>FT_q*in{UdQEO*8 zPQi7k23y1Jwb0d=fnBMdY^)j1_{USRgbEGu7IflaR1d#H4RKhGy`O;kLS`egWKF;> zxClGrTGWFZQ4RbAHKi9(BNsfvUiDF^DegAHXU| *qn`6Rsw0O{4e}i~g)^w33K(q XHgG`yWajZ55Vs1*P`yX97A}%^*jYFvJI%A-DOTV zh+167Q6uu5sSh4&*GHo2dtwXBL~dy1qV6{yb-w}(!eX;uhOODJ!(hGt_fyc&Jcznr z399ESQ9am*>Uk5Y<%dwK{Ug-*U!%@Hk2*he9HWR`Q4MjTz7Hv;zL9bw(e@6{w@#7I z$YtUn+UTt1CVJq# 1X8U5hyUrM&uiT>A3^QO1q@8l49nam;oAk7 pTIkb zZ-qJXA;yt3vYE^#zuvT{T5{nQyp2pGdet@%ZTiH%M%IvE&dbJmq kjp(+0sKPF$05OX7n)_l@e1vZDNUrqT{qHlt>2g&ZMCHvp~ zBPj1AXEpzNjh-fxiMD!DLVA#6M00wYd_@9zfZpp{$&EzY^Mv0?77PBDt%;J>#yO(5 zvA2nCtAo5o-oP?5x2y4( Ms9az K2 G%`rK$3{IA4xj7n=B_aq!oFJTp-sGFL|H* zg%p$C 85V0`jd`(>0*lD1@$slNkX zA(zOt B1s>j?ayKS=ykQoA9DWnQCl1>%iS}pJ>K#v|BUDlgZ*QiNsf*s z?%Fxt%EBru-&;7-RaNb*s+m#ksV?;w$GscS<(H$A+||yCe?Ox>HQ`NvQsR@2Ni$vL z&N6SIr>NFh>#eDDj;?ggc2&D7okf-2GP`Q1%UN9MF3RklGN&ThRaoXJPpPQ%7I{kD zeJYA8x@VakXNBty_s|qqmVZajeU6Mdp29oa)m1?WY4KG~Z@DueJ)VZ zveN?m$vN|b+|7fqcLVj@()s@lfwQV ag&{b01w9M(I$~nWM dMpt<_!@qu1grl8?#o4&6ac$!^#)z@9eg?e}{>%UX diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-az.po b/projects/plugins/wpcomsh/languages/wpcomsh-az.po index 6a1a68fa921a5..6a933a7bbb973 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-az.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-az.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-14 20:10:07+0000\n" +"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,30 @@ msgstr "" "Language: az\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "Marketinq" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "Bağışlayın, bu səhifəyə giriş üçün izniniz yoxdur." + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "Qoşulmalar" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "Ağılda qalacaq bir neçə sözlə oxuyucularınızı şərh yazmağa sövq edin" @@ -248,7 +267,7 @@ msgstr "Planlar" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "Bütün saytlar" @@ -440,8 +459,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -451,7 +468,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -475,11 +492,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -535,12 +552,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -676,7 +693,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -701,7 +718,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -738,8 +755,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -837,7 +854,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1048,27 +1065,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "Ləğv etmək üçün yenidən yoxla" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "Başlıq" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1080,114 +1097,98 @@ msgstr "" msgid "Podcast" msgstr "Podkast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "iTunes kateqoriyasını seç:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "Podkast kateqoriyalarını qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "Podkast açar kəlmələrini qur" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "Podkast təsvirini qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "Təmiz" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "Bəli" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "Podkastı açıq olaraq qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "Podkast müəllif hüquqlarını qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "Podkast xülasəsini qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "Podkast müəllifini təyin et" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "Podkast altyazısını qur" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "Podkast başlığını qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "Podkast qidalandırıcınız: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "Podkast kateqoriyası seç:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "Podkastlar üçün bloq kateqoriyası" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "Podkast kateqoriyası 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "Podkast kateqoriyası 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "Podkast kateqoriyası 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "Podkast açar kəlmələri" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Podcast image" msgstr "Podkast təsviri" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Mark as explicit" msgstr "Açıq olaraq işarələ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast copyright" msgstr "Podkast müəllif hüquqları" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast summary" msgstr "Podkast xülasəsi" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 msgid "Podcast talent name" msgstr "Podkast istedad adı" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" -msgstr "Podkast altyazısı" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Podkast başlığı" @@ -1201,31 +1202,31 @@ msgid "Podcasting" msgstr "Podkastinq" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "Sonrakı addımlar" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1241,21 +1242,21 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1279,37 +1280,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "Disk limitinizi doldurmusunuz. Lütfən yükləmə etmədən əvvəl bir fayl silin." -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "Şablonu dəyişdir" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "Dəyişdir" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "Səhifəni redaktə et" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "Yazını redaktə et" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "Redaktə et" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "Yenilə" @@ -1333,7 +1334,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1363,7 +1364,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "Bu səhifəyə varmaq üçün izniniz yoxdur." -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1384,9 +1385,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1429,56 +1430,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "Şriftin maksimal faizi:" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "Şriftin minimal faizi:" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "Kateqoriya ID, vergüllə ayrılmış" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "Ayrı tut:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "Göstəriləcək kateqoriyaların maksimal miqdarı:" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "Əgər saytınızda daha çox kateqoriya istifadə edirsinizsə, onlar burada görünəcəkdir." -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "Bulud formatında ən çox istifadə etdilən kateqoriyalarınız." -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "Kateqoriya buludu" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1624,51 +1626,51 @@ msgstr "Ən son Instagram fotolarını göstər." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "Bioqrafiya" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "Sərlövhə" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "Adı Göstərmə" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "Kiçik Göstər" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "Orta Ölçüdə Göstər" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "Böyük Ölçüdə Göstər" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "Çox Böyük Ölçüdə Göstər" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "Sizin about.me URL" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "Vidcet başlığı" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1689,71 +1691,71 @@ msgstr "about.me profilini miniatür rəsm ilə göstər" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "WordPress.com-da pulsuz sayt və ya bloq yarat" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "WordPress.com-da pulsuz veb sayt yarat" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "WordPress.com Bloqu" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "WordPress.com Loqosu" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "Biznes dərəcəsinə yüksəldin" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "Gizlət" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "Mövcud" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "tərəfindən" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "Şablon" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "WordPress qürurla təqdim edər" @@ -1781,7 +1783,7 @@ msgstr "Qeyd et" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1899,140 +1901,131 @@ msgid "Email" msgstr "E-poçt" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ad" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "Rezervasiya Sorğusu" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "Rezervasiyalar" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "Bundan şərhləri göstər:" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "Mətnin arxa fon rəngi: " -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "Avatarın arxa fon rəngi:" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "Avatar yoxdur" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "(ən çoxu 15)" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "Göstəriləcək şərhlərin miqdarı:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "Göstəriləcək heç bir açıq şərh yoxdur." -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%2$s üçün %1$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "Anonim" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "Son şərhlər" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr " " -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%2$s üzərində %1$s" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "Müəllifin bəyəndiklərini göstər:" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "Tor" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "Siyahı" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "Görüntüləmə şəkli:" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "Ən son bəyəndiyim yazıların siyahısı" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "Bəyəndiyim Yazılar" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "Mahnıları seçin" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "Musiqi Oynadıcısı" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "Çox-mahnılı musiqi oynadıcısı" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "Gravatarınızı profil səhifənizdən redaktə edə bilərsiniz." - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Gravatar-dan sonra görünən mətn. Bu istəyə bağlıdır və özünüzü tanıtmaq və ya bloqunuzun nə haqqında olduğunu anlatmaq üçün istifadə edilə bilər." -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar bağlantısı. Bu Gravatarınıza hər kəs tərəfindən tıkladığı istəyə bağlı bir URL-dır:" @@ -2040,120 +2033,121 @@ msgstr "Gravatar bağlantısı. Bu Gravatarınıza hər kəs tərəfindən tıkl msgid "Gravatar alignment:" msgstr "Gravatar tarazlığı:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "Ölçü:" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "Özəl E-poçt Ünvanı:" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Bir istifadəçi seçin və ya \"özəl\"i seçib özəl bir e-poçt ünvanı daxil edin." -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "Mərkəz" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "Sağ" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "Sol" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "Heç biri" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "Ekstra Böyük (256 piksel)" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "Böyük (128 piksel)" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "Orta (96 pikel)" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "Kiçik (64 pikel)" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "Bir istifadəçi seçməli və ya Gravatar Vidceti parametrlərində bir e-poçt ünvanı daxil etməlisiniz." -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "Gravatar" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "Gravatar təsvirini daxil et" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "Yan menyu çubuğunuzda göstəriləcək bir təsvir seçin:" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "Təzə Nəşrlər" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Yan menyu çubuğunuzda Yeni Nəşr edilmiş bir nişan göstərin" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "Avatar ölçüsü (px):" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "Bütün müəllifləri göstər (hələlik heç bir yazı yazmayanlar da daxil olmaqla)" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "Başlıq:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "Müəlliflər" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "Müəllif avatar təsvirləri tor şəklində göstərilsin." -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "Müəllif Toru" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "Bu sayt özəldir." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bal.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bal.mo index 7b86b621941aa74f8c2d3a695e15d207cf1356ff..44b0adffa1be216574b5e09e1bcfb57b54af7fd3 100644 GIT binary patch delta 884 zcmXZaPe@cz6vy#1zR~%Uj4~x-l!%IpiB=J~DS{wfNDN3qf#gQfT$m6;;|fd+Tx8<3-ecOQ^)lKEH|$#A~%UH2cip0uxo# zjl0-_KapmC-D6auQ@o84cGr3iRroOKx%-&JY1A9aqn;~x{2a%Ki;Br_Ck(VvgzOA0 z=B7{uwbAKobl@%QLY-g&(|oQeyi7bx724+`s*q2}l6^%Lw1w^X-RJ*csBd}5Kotg* zt2mBlFoW8#2h*5Enq8yQdOvD?2$k?IcH<-}@k`XcB_xHt^Y}gLpdS(z);3u2g$nAV zUr;Bkdc1+X#NSXS`Hd>*5NmIYNfnYpB|L|dcpho?j7|l;M*W$~cox@_qxFrpnP4y5 zN1FYjdxZadew^bf(L>Zmk5TtMMV)L8Rd^9^;Jn8>r3b-a#478-W>9$(n~DAhtTamF delta 951 zcmXZbPe>a<6vy!w6ODgTB~jE+u~7^tn1hN3t5^`kUi9cy3JGnfL?l9>Q1_~$c!+}N zr6?j&D53|8rSxL;pdb_qBD7Fw!9!bm6g<@LZ=Gc_pM5j4Z{F KsQsIN?lV2XPj)K@n-TPN#KmT)ge#x2Sb{sErTZ_$MqOKK5hJ?39~_44k7D zUSkdZLz xMQ{|OsPPF@;ThC(IjqE4)Ek;dJy&$`8m5Ui6|=vE*;R?6$e1-a zn~`QoI(>~44r3SU1O=?aR~X~7En_F~Ce G>)pY z-Nh-aA|5~`e2Os~Lz+FK)BH=+d;zuLYiz|ORQ^3w-uK9!_R+;B73TRTK4U-$zPO1? z)QP{LPWr>eKQT#sjXFs+oeGMh-dratPY-ItK74_LNV6R}6||4~qduzS{nv7H#efq1 zMRHq!V{vO$n8$k5_yTI96;z@P)VeLy$=;y~Kg1{a!Ns?z|BnC2m+~(a+EUC0`vbiP n+riJlx %3$s a>O@1RpJu`}g~!P+q4qDLF5o@tz^lk9U%BkU zU#M>!+)|k*jG9|<8oGtUxQY|*jRbdfLC3HQ$FUi2<4K%D-HA2S39H$E9j6{wuoJbu zhPtrdt{ceL5?_-@i%498G#Eo7s1NiZzk`gR?!al(Egr{fc;C)@Bc369-rM0nOs+px zul> Mx `cHrg5osT?8n@6h9*J#TcxhH3Q^y1+ez&Ko9T zL^qKjdWijmevQ7uhH EAV?R7f}=x*LccHhdF0*a-pjk+pSyd~``%gn8t@__ zG94DNa27S6!%18~8^aW}-oi=q4h&%e $YeN;9q6M@@DiKwo%#QZ$$wxM^$pa%Eo{LU&Fz@Ly*P+^|AeVu#+~GM zn!Nf-9#M!=c#6C6Ii~TAsc)hV{0}?PY8L6n1nQ24QSX0%w8)If=W!o-+2o&4$N7f3 z(GAZOHc@Y^qV7CImp O{S$uc&A|jc3Tuq4v+AE?^0D;J3(6K62WR>!>@fqRtbI z)pM_%3w?wK@Fy0{AKi3oV;a*qgnRHh>JykkooF8Q{smmYWmBKxedvN78)uQXBhRo6 zUm&en`M`w^^d0#O Md0?`HCuTqPOxLjGF3 TtrCoP24l6>)mN*FwPx7{R2O2h diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bel.po b/projects/plugins/wpcomsh/languages/wpcomsh-bel.po index 281871dca5462..bb53083fb2e23 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bel.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bel.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-14 20:10:07+0000\n" +"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,30 @@ msgstr "" "Language: be_BY\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "Вам не дазволены доступ да гэтай старонкі." + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "" @@ -246,7 +265,7 @@ msgstr "" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "Усе сайты" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "Назва" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "Так" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "Не" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 -msgid "Podcast image" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 -msgid "Mark as explicit" +msgid "Podcast image" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 -msgid "Podcast copyright" +msgid "Mark as explicit" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 -msgid "Podcast summary" +msgid "Podcast copyright" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" +msgid "Podcast summary" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "Наступныя крокі" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,22 +1240,22 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1278,37 +1279,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "Вы вычарпалі сваю прастору. Выдаліце файлы, перш чым загружаць новыя." -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "Змяніць тэму" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "Змяніць" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "Рэдагаваць" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "Абнавіць" @@ -1332,7 +1333,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1362,7 +1363,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "Вы не маеце доступу да гэтай старонкі." -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1383,9 +1384,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1428,56 +1429,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "Выключыць:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1623,51 +1625,51 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1688,71 +1690,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "Схаваць" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "Па змаўчанні" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "Тэма" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "" @@ -1780,7 +1782,7 @@ msgstr "Захаваць" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1898,140 +1900,131 @@ msgid "Email" msgstr "Пошта" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Імя" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "Колькасць каментароў для адлюстравання:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s да %2$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "Ананім" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "Нядаўнія каментары" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "Сетка" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "Спіс" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "" - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" @@ -2039,120 +2032,121 @@ msgstr "" msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "Па цэнтру" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "Справа" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "Злева" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "Не" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "Назва:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "" -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.mo index 1208a9e9e2af29e571ed4dc35d8cd7d5ac1ad939..a5396e43ed3352fd5ef657d0c90033ef1694a7cf 100644 GIT binary patch delta 3117 zcmYM#eN0zX9LMp)Q}QSxKE#80O#~H0&@eMiNDaxS5JMfhiGYampg;;~{uDzjEsUQJ zskOFPEt^~FFO+#xT5qp?Del;5F=z*D(U`+x}n%olZLvb^ko% zlqo^ow;DB0LqFpQ+}K2i253P|v=bk}4tx~%qY^xZn(!3ry7L%=-=ik@2{qvz)b$VS z`95*(gac9iiPqt99`{6sy&xM$alr)JUWQ7f0+nF3bsZ{!&8P{tA#<4y)b*XHgg(Z2 zJc(NIdDMLuZTpIcif;H3wKdmK6a8V^_fR)J#7GQf`8pqq!I*&RPexsrh8iyemDqSp z!l|g0msrbDiFj&krNP>aO2lJrLk-l9$#@WzKsRcIU!n%OV7-ii1)&nUj?s7%^{DRQ z91LSyxX)vXsN~YI7?t4x)WDtY1;&S3;b*q}mGxU3OTQnLkQv}k9Eobjp%O^4Z3hR@ z9*yOghhfZbKC~AcM%{2caDtZ%wUV=_1inEHd=a%H*HAlk1GTc-$l}aH)P4O2y3alV zb=??Le-3I#CSwHin*u5tpa?ZUskIS9Xt$wOx&vq6Db%wMVmUGt`vx%yPNqF*u)ESC z)I_Ur3a-Zn?83)!6rYwy1J9 1`x#;v#=-$%VX=?U)JosUX%5k7${Q0EUKf93=S zEuaVWHT+`x@1hnGo9HGKkJ?cuk^NVO>2&nPiRfTHGPhZYLvV}rJ!C9%# bnhC@;Pc{m;C;{x1=4*rfxG$xt-4`jl!HBmZh2MRdw#hDeT1e>r8TaiB#!^Ltm zD)D^OgvF?rtP- )$)0$CT3HO=h6c(;C6 CY!<~PfzXrfwNj?Ks? zZho-+cTkVyUsPhrBkX5s&Bqh;m!WnniL8`J3ToUO+s;KLREYYF%h5wprrw^|i~6NH zgxcz(sLa1ZZDDAd`}QWF63IvHNHMZ_Q-gY`cA+LXV9$SqqiBDDp?Cue@Kzf8f0oL` zk?x7VF_`v448pgG-ZGiWR6;*kN+yJ;BDNDeIg?AMC^3~62~DcP#+f&XEJBYmf>22{ zv-q)a>xSJ6lxI1H6M<)i^N3Bv%Y;fhv6NV$hAs0k&$~1-$@2!aIlbMu%GNid)~qs- z$OzQjLk(!3``Esn=n%Vz3Zl2vQQ1If50??+2$ktBI(qL##>~)5rSc?^NfZ+0gvw%< zz?-g@L}ekdfXGpUvWJ-MEr?3;=&8O%Od<4O^i);$xtK=WX6t2E@fuNV+gq&Tt l6D345v6@)f`z&9fp?|nzytkv`hrCWrFC9 sMDa zR@GMe?#EpX%B-ueZ_aR<>t1q7>nohvx<;q8y1H(CMY+>h=aiO}>F&mrRSnLX(#ncV zUr&5^u=m!$#HexE&bX{e*;$jaa(wZF{tWdENLm{f_m2Na&u0Hge^*b7zuSMt@AGYS qE{8bp_O$y?bE?JP< koD#ssU1SA*;0t&_;hhmJ15%v4qcRJ~_pP6~zcjlRS-)YD6ZB++S zUEWAzOm(a={csNUK@X2Y4Cl4~!FvX)>bH%zeYW>g}tpb~AjcAyg2jGAx a8Yc&pP!T3!DQd;F*14zz zysfsf*t#5*z#8iY)Ii(uVSERbz!B8Sj-v)TZ@q*{;2J8SpD+q @>_iM| zyd;cfev?K;1B|dv!eH97Fc)iaB5pyw^KYydkg?50jB)YR<5=1cSguxFJiwW-3QK6e zfF9h9k6=HJlvfjsprWm>L%ri>T#p-2A5Z)s=c~>^t#}+3Vma!12l8in_|ZZRqfWt> zw*N9}L4TmWg}+fd8$Ou*S4aF{R)9m%jXB8NrUHlHJnLHIS+m!+kD(^IjJp30YP>MA zO2Guw^&%|8NjL*Hp&PFyvH!~0#j=%AB5J~+sGTU`hZAUKqXurqb+`=qGcInH$*2X4 zK}|Rf^$Kb*4;P`v--8 FwG(Sm4|F5Xn)fjsPoTE=Hj=9ebsIAb zhoKUhjC!upT8o-!J}SXwsPQ{dr=$xR$7_11=!Q>G$M6&?v(u=7ucKCW8#VC*)Rrf) zeC^CA)b%N-31^`anP=OJQKzKSw!2Z!eSqmY|A*~`tEd&-we5J$h!RUd4VZ;WY&2>m zm8hMm!;f(zDv_}avINUf_Z>%_mTyu27ot*~kI#*P^Iu9u6ICEb*vz)=g{W7s9JR7t z$cJk_w4T62w7*B~RCk(_z p*?2U8qD(pmyRsvS@P)^$o>jI1>y+T~EhMEWr?L#HrYfpW(p__Fos;hdck-R-z_Y zjV|mWdP@nF@kAb>q=JbiVjaO7Go^%zo>!SkJQ}F+9~QR|`Gj7jl2yqtPX$g!pur*n z PEjs`8wJ zdEELYmiwkgCVBOlyg@uc1QF4M%G(a64PUqQI;&VuRNMAyYoV1bHyeo=#5kgWP? #AHJMMc4RJq6Q4=rq)U5(;P#rB^DB8 zzN)B%zRRgq5sL=Eu1Mop!W$PCn+Pt-%botR?#dU>9T&fp~55sMwRJ{((!w}_p@ zSVHGHl-N$FjMUHY()#*E4IYoX#UC799n`0#p{}i|wZ-F~8QUG?|10jI%kN4I3o2gP zRNvUp<_Ss5PxZK4Tij^{sUA~Vkv+X(Nt1^Mvddm-YbbUX Cfu_dr0Jtv#ZZ;Jag#Gku!(=$w{72|6ccnVE=ciX(6$JA-QzG8T5ZEek{uX diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.po b/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.po index e57115b683797..ce33656226e8d 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-14 20:10:07+0000\n" +"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,30 @@ msgstr "" "Language: bg\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "Маркетинг" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "Нямате необходимите права за достъп до тази страница." + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "Връзки" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "Няколко думи, които да подтикнат посетителите ви да коментират" @@ -246,7 +265,7 @@ msgstr "Планове" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "Всички сайтове" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "Отмаркирайте за деактивация" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "Заглавие" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "Подкаст" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "Да" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "Не" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 -msgid "Podcast image" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 -msgid "Mark as explicit" +msgid "Podcast image" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 -msgid "Podcast copyright" +msgid "Mark as explicit" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 -msgid "Podcast summary" +msgid "Podcast copyright" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" +msgid "Podcast summary" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "Следващи стъпки" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,21 +1240,21 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1277,37 +1278,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "Използвали сте цялото налично пространство. Ще трябва да изтриете нещо преди да можете отново да качвате." -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "Промяна на темата" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "Промяна" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "Редактиране" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "Редактиране на публикация" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "Редакция" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "Обновяване" @@ -1331,7 +1332,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1361,7 +1362,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "Нямате права за достъп до тази страница." -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1382,9 +1383,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1427,56 +1428,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "Изключване на:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Пускане на сайта" @@ -1622,51 +1624,51 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "Биография" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "Заглавие" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "Снимка" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "Заглавие на джаджа" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1687,71 +1689,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "Създаване на безплатен сайт или блог с WordPress.com" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "Създаване на безплатен сайт в WordPress.com" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "Блог в WordPress.com" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "WordPress.com лого" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "Кредит в дъното на сайта" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "Доплатете за Бизнес план" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "Скриване" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "По подразбиране" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "Дизайн от" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "от" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "Тема" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "Гордо движен от WordPress" @@ -1779,7 +1781,7 @@ msgstr "Съхраняване" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1897,140 +1899,131 @@ msgid "Email" msgstr "Имейл" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Име" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "Цвят на текста:" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "Фон на аватара:" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "Без аватари " -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "(най-много 15)" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "Брой коментари:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s за %2$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "Анонимен" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "Последни коментари" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "в" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s в %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "Мрежа" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "Списък" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "Показване като:" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "" - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" @@ -2038,120 +2031,121 @@ msgstr "" msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "Размер:" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Изберете потребител, или \"собствен\" и въведете вашия имейл адрес." -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "Център" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "Дясно" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "Ляво" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "Нищо" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "Gravatar" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "Най-нови" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "Размер на аватар (в пиксели): " -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "Показване на всички автори (включително и тези, които не са написали нищо) " -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "Заглавие: " -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "Автори " -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "" -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.mo index dc890d9ddba6a932610172cd36d3ef14025b4fa7..5b7c5337f01b8ad3406f95cff19942030cad9bd4 100644 GIT binary patch delta 2296 zcmYk-eN0t#9LMn=$YY?uH4swbB!a2jxLmmMU}`@0U?2%;MX@NT*!124(@eKpxj@(W z1Mes|ZF7^(CFZQ{R%
~TNT#q4}e+hHR4_il(Ps}mQ zz>`STW&*SD6jE>0By7QF)-O^I%tg%O#c5PUKcFi5&E~IJXRR5uuIKrvjucrJqQ+8% zYIp_mi3y@lLtSNGXu~odbfOv#qbhtE^+D9;4_QZW8RbW8{!>%~=THq^u=$HvK>iz? zk5^IkUdK#L^*^>C H89-$Skt?rB*-IQeKaY(L8P4 zg=%MS9`mmU2Po*pAykDw+ZTVg`5UMarqL^nAP3cfLM%cD^*m^wH=~dII#m6gsLj`n z>d;fT36JD6|C-8gDUj1RFU^=s*g*c5xvW1fX3MX}w^1FK#ua!4OR#|6sKILFQ`2nS zY|A^4Kl2P1ow7Yxim|A@Ifb 0=;a}K<#T4p!w2hm4x#>bxbQ0CT8C1hx<6^vmsyK^YXsIeu?;S$DcNDb* zr)~L%_#pZ7xB-1^eJ#ay)OSxJkD}&zZkT0r5H%&E_Jv8*2cKXgevWEj7S+)?x29&K z93LVdu=&?eGc$(z{sX)Nr*J)bsF7FF>s+1x05=*z3zrbK;|va=I&^?}rKe^LHFXoH z4t$4q;tkY@mMlm$*no%0uR* slybru=FFD0#+@F{wHYd zL&SZA65Aj-YMoyOlKfw=26g_G9w#0q9w9ij$-UKzm4uQ8pk+|nto2u-W69LQ^&Vmi z@fh&{@dTlxwvs3(wAM ZPiti7Prks^6bxA!~LzNTzDQA6Bq zABg3I&iXQ aqninx1SS25+)NwoO&zw|drf~mp%b8_WeF17lp&RB{Pz?3b*d(m z9!-(F>gQH#rG25q<~0scL98N_I1pwXp*`~dw3JMjE#TOjPJ6Fk*sX;2R;G6D+St|X zpK|)c&pI8ENI3CjPFs3eWME)ljk7QEqSG_b=Y%7>ot~XLBYXRLV}bmV#Dcv2X;tl8 z{oDHX^bht&!v2jtyZc(4U?AAw4}|=|MyIZ>CDhbXA546ee=WWIBQO4n=N|RqBcA)d z=MFobJLI_^d+sqWKAbpHP?KHZdhu61_n_y#>A7b;cf2O`&ZOr~P~gPQmX*z=h}VXb q?@Yzc`R3QYuE+ZDG@m3toV?k{l;@`I$N7vpCcJmX6W^CSm+>FlI1e`f delta 2161 zcmY+^Uu=_A7{~EvrMS%w24ic*O(?L+pP_B%*k;uYL=g~>fja*Tj53%ez+wg?!Ha6* zjS8Y$NVqV81lAF PWtsfPy?8DZ=l|xoJw_A ziBwq>t8gLC)T=g Oi&I zi5k#zUf+vZ-EfeM8hiz{*017bJc_#hEvn(~Pz_x3`hSpLFm1Xo!t}|x$k;9BE<&~6 z;N=u{Q_e(~e?4&0FASl|qo_A~A2sriQ5}DRbMYI${-a;Nj#|@cRL5n!g*ICiCNYW+ z<2uv~9&wLVF#pw53{Ww<#B3OwC|{gqb{K!b2XGHtTmw0S4LE{Pyn^cZcjQqEF-lp9 zs;@(SmgG;Ts~vB{F85%TOp=PXQO9cxYj6V9z!dVc(m7@eFoxQ!&8PuvMK#=m>iBik z484oD<7sTgF~9y7K0-OnO=>5*iHthfgX*{+7vm9B!=tFRx{SIn&8T$W8q^YXqUv|z zCftu}@gvky-0 IHtlRXYEFlbNO>Nv+lm9KK-UDh;t^C )%dh1M!q J)w_Nf(ZKWRK}A& zv+T#5c`Q9()(H!!xQNX^*TXIFbKLTHB|+hGTBqJg+b6W l yg$6@4^YSa^L`(CZ$99L8>b`g(cdjsew2(Vr$Q>`_#tONMh1^+XhEK+W2JJr@M#7~4 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.po b/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.po index 33e7fc6aa3fe1..353af9bce5f28 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-14 20:10:07+0000\n" +"PO-Revision-Date: 2024-05-27 11:58:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,30 @@ msgstr "" "Language: bn\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "দুঃখিত, আপনি এই পাতাটি দেখার জন্য অনুমতিপ্রাপ্ত নন।" + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "" @@ -246,7 +265,7 @@ msgstr "" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "সকল সাইট" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "শিরোনাম" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "হ্যা" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "না" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 -msgid "Podcast image" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 -msgid "Mark as explicit" +msgid "Podcast image" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 -msgid "Podcast copyright" +msgid "Mark as explicit" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 -msgid "Podcast summary" +msgid "Podcast copyright" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" +msgid "Podcast summary" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "পরবর্তী পদক্ষেপসমূহ" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,21 +1240,21 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1277,37 +1278,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "স্টোরেজে আর জায়গা খালি নেই। নতুন কিছু আপলোড করার আগে পুরনো ফাইল ডিলিট করে জায়গা খালি করুন।" -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "থিম পরিবর্তন করুন" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "পরিবর্তন" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "এডিট পেজ" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "এডিট পোস্ট" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "এডিট করুন" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "হালনাগাদ" @@ -1331,7 +1332,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1361,7 +1362,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "এই পাতাটিতে প্রবেশ করার অনুমতি আপনার নেই।" -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1382,9 +1383,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1417,7 +1418,7 @@ msgstr "" #: private-site/access-denied-coming-soon-template.php:46 #: vendor/automattic/jetpack-mu-wpcom/src/features/coming-soon/fallback-coming-soon-page.php:273 msgid "Coming Soon" -msgstr "" +msgstr "শীঘ্রই আসছে" #: notices/storage-notices.php:116 msgid "Disk space quota" @@ -1427,56 +1428,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "বাদ থাকবে:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1622,51 +1624,51 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1687,71 +1689,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "লুকিয়ে ফেলুন" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "ডিফল্ট" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "লিখেছেন" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "থিম" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "" @@ -1779,7 +1781,7 @@ msgstr "সংরক্ষণ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1897,140 +1899,131 @@ msgid "Email" msgstr "ইমেল" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "নাম" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "(ধরা যাক প্রায় ১৫টি )" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "যে কয়টি মন্তব্য প্রদর্শন করবে :" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%2$s প্রকাশনায় %1$s " - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "অজ্ঞাত" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "সাম্প্রতিক মন্তব্যসমূহ " -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "চালু করুন" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "গ্রিড" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "তালিকা" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "" - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" @@ -2038,120 +2031,121 @@ msgstr "" msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "আকারঃ" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "মাঝামাঝি" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "ডান" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "বাম" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "কোনটাই না" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "শিরোনাম:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "লেখক" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "" -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bo.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bo.mo index cbbb7eb8f10be007ba0c39a22b6f633036a264e1..628285d156889c23974a2c0e8c54e6967a982a1b 100644 GIT binary patch delta 1100 zcmYk)Ur19?9Ki9jbjJLX)m#*T-Xw{#xhWd7{#ZFPgR!WfhagxwQWF>3Onhl2R!RiL z^+B*8DkFQSbOj+^3F;*x2zu(lxIxrY1QkS()c1Gq5gOb5+~4n<-#Nc~c1MHHf{*`r zav`Nuz^4>n)ykz1<2pWyox~^5i!XHkm5$$G5&8F88jY^ zyfjL~BRU>O+4o^i54_O>3)&wj3;I^NR--)W4wMFtArGZ`v;(-2co-XT3T5LDC>#Am zsrRpP^C4}nl^a>;xK4ConD`tP^ItvE`B`?AlX;7BBHvMtw25Qdj&YR6M)4-zK=~^p z6>i;0tRWsod8ZyAjrFK<+LR9KP&$rrp;^^|(s35$B(9+x^%P3OdHjXXkv^TVT9o&w zjbAlCX>{qc%luealp4 delta 1054 zcmYMyOGs2v7{Ku}=~c#8k8z?0V?~P^6^b+r z
n#Wo_n9WBkttyKsKn9 z3Ue#Q8k9K7ts8fsgPzUbwQ(Lx$WK@&v6T23@>j3872!O#;#;i7P#OIJrM6)^aiUyh z{RxBRO06X^id*p^uETi@<7exVwW>m?mE@zi5tG=2oi-lB&BPPv;sUP6pD62vDwT?3 zZDm%eO*BrD*oBu-CQf1q-{C?0f-crpDYXW>P!{S%dE!Bof=BTN=CKa9Q>BdSLMiyX zjjy2W>t$`nl S8M62 C7Z8a zz1*Lzqah15+eACYiO*me?# zxC+00-lyW4z!5LtgaWNz*lBR&F^+m|PD8kb)}g{cq(-&h8*^%c#|l|*hN#U(d%cfN zeV} Fq`xl`OGGoOv%@{!b1|Js_xHIirw4jckwiR^ zbmKeS#w5*DV>}h#J$ 3dRYAfMW)4I diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bo.po b/projects/plugins/wpcomsh/languages/wpcomsh-bo.po index f607e51787ce0..0491a7727788c 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bo.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bo.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-14 20:10:07+0000\n" +"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,30 @@ msgstr "" "Language: bo\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "དགོངས་དག ཁྱེད་ལ་ཤོག་ངོས་འདིར་འཇུག་པའི་ཆོག་མཆན་མི་འདུག" + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "" @@ -246,7 +265,7 @@ msgstr "" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "དྲ་ཚིགས་ཡོངས།" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "ཁ་བྱང་།" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "ཡིན།" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "མིན།" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 -msgid "Podcast image" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 -msgid "Mark as explicit" +msgid "Podcast image" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 -msgid "Podcast copyright" +msgid "Mark as explicit" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 -msgid "Podcast summary" +msgid "Podcast copyright" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" +msgid "Podcast summary" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "དེ་ནས།" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,20 +1240,20 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1276,37 +1277,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "ཁྱེད་ཀྱིས་བར་སྟོང་བགོ་བྱ་བེད་སྤྱོད་བཏང་ཟིན། སྐྱེལ་འཇོག་མ་བྱས་གོང་དུ་ཡིག་ཆ་སུབ་རོགས།" -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "དཔེ་སྒྲོམ་བརྗེ་སྤོར།" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "བཟོ་བཅོས།" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "རྩོམ་སྒྲིག་བྱེད་པ།" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "རྩོམ་སྒྲིག" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "གསར་བཅོས།" @@ -1330,7 +1331,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1360,7 +1361,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "" -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1381,9 +1382,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1426,56 +1427,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "དེ་ཕུད:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1621,51 +1623,51 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1686,71 +1688,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "གབ།" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "སོར་བཞག" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "བརྗོད་གཞི།" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "" @@ -1778,7 +1780,7 @@ msgstr "ཉར་ཚགས།" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1896,140 +1898,131 @@ msgid "Email" msgstr "གློག་འཕྲིན།" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "རུས་མིང་།" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "དཔྱད་མཆན་འཆར་གྲངས:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s ལགས་ཀྱིས་ %2$s ཅེས་པའི་ཁྲོད་དུ་མཆན་ཞིག་བཀོད་འདུག" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "མིང་མེད།" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "ཉེ་མཆན།" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "དྲ་མིག" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "གསལ་ཐོ།" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "" - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" @@ -2037,120 +2030,121 @@ msgstr "" msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "དབུས།" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "གཡས།" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "གཡོན།" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "མེད།" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "ཁ་བྱང:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "" -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bre.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bre.mo index 24877263d7114ed6d4ceffe532ffcf41e5660363..a8812a5a9ed137a7b85bf24ae34d50c3598fc26a 100644 GIT binary patch delta 1630 zcmXZbTS!zv9LMq5(p@)qGmoxj))r{XYFQ~%7FlGt6l|E0TV&y-n?z|@B7$&`5R&R8 zlfa+?p@Mo_dhn@wFp3^3v7%Uf(C7vRQFI}&zCW2|_k8BenfcFu{&V(u>8q$a;iL^3 zK27`<>o?b!bJEL&Pc(xcmS6?$#%k f2@ zavJmL*lZu{wC=I}4ah)q9JN3f2GPX@cnKqT9arHfYQZ0<@qetIdB$XN@5d|*p^x>= zavGXYhKw~8)=ikseGIjeIBMb%RG?1G!Cut-LF*8faDM}})2En^FHrG5q2heS9M(58 zG!(!gswU*4G7qDJ5qrM@HEt`aVlkY9^+*V_&ptndiqndP*p8fnxqwRGiggHGEp(HH zN_+>E*?l`;)cOpy@JrOV*Qg_yvd_Pv7Wjoadks=T4r;+AsQw~Uh1a4I+!CPv>WI;y z1$Nm1^{AJn(cX8W0=cM(eW(R4VjW&Z#rcfd(09~E{-P4i -e7uBoP> z014F2PoheA2DLyB@-_Wj6zCf2sBWX)k-MmXkL>fus11#w;-#<%C+%}D rrQzK<%^{74RtPC{AEK_SpL|)ci?Qg}$IRri&5{p%M#YL_1nZ zgJjG)oPGOI3&l~TuFD )MYa1I-7h1wO?x9K}WW6|TWc*nsy@ z3ob659lzB1B0fud9WKO;h4#ELZ&1*L?Z{ly<$N3GQjeo{l0;2>7Zqp(EAeyG{PWI9 ztfPJzwbO@Kjnk-jB}`VF1z5@YW(5TWXhuzV8MV_ktiY|Vz8^KtL!DS0pTQgw+Z=QK zCs1+T$L07jax3ObR07{RCo!*uu29es-$G?}*A2Mue2iN7H`KT%s4JL5MFGoE3sj@- z-l7s}cKxlc{dLp{??EMacs}>9hByscAngX^P!CJq)kjbZjiM%=K`k(byYK=k&OEZx zhAL4TS&m9{9e SPkG{T qn?NOW$@v2+(3I {2Z3+{Xb4Y13yFsJgE-+0=3`->Ig3)M`muI z?r;jV(_c{me@9)#Q{024WUqQRYJM7ZLdTG=`G~)*%Jeh^Wj2ONU=rDsxsG}Ze!_!z z54GSXqUgw5QS-Je8D17W5IH=Yi|&oYhVMi>Bi{H6#l?|G_jqkd&D{L{FlT$bl z-RAV|5#)G8akWQpmwYiE- zdwqUOqu178VnZfOnZcm9&(97N)i%`(*f3>ln`;Kl&d&NS|7b7}gsJfZWi!!SyPr&k zxvceUCdk^Jgn#Xuo`g+=cH4iM^ag|EL(Bgr;vMl*DH|&!H=9YHm&zKZn?e$bQ^?|9 DCsE*7 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bre.po b/projects/plugins/wpcomsh/languages/wpcomsh-bre.po index 50fbc891cd1b4..3ebc059aa9d30 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bre.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bre.po @@ -11,6 +11,30 @@ msgstr "" "Language: br_FR\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "" + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "" @@ -246,7 +265,7 @@ msgstr "" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "An holl lec'hiennoù" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "Titl" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "Ya" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "Nann" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 -msgid "Podcast image" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 -msgid "Mark as explicit" +msgid "Podcast image" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 -msgid "Podcast copyright" +msgid "Mark as explicit" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 -msgid "Podcast summary" +msgid "Podcast copyright" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" +msgid "Podcast summary" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,21 +1240,21 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1277,37 +1278,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "" -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "Kemmañ" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "Kemmañ ar bajenn" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "Kemmañ an notenn" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "Aozañ" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "Nevesaat" @@ -1331,7 +1332,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1361,7 +1362,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "" -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1382,9 +1383,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1427,56 +1428,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "Koumoulenn Rannoù" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1622,51 +1624,51 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "Skeudenn" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1687,71 +1689,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "Krouit ul lec'hienn pe ur blog digoust war WordPress.com" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "Krouti ul lec'hienn digoust war WordPress.com" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "Blog war WordPress.com" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "Logo WordPress.com" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "Kuzhat" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "Dre ziouer" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "gant" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "" @@ -1779,7 +1781,7 @@ msgstr "Saveteiñ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1897,140 +1899,131 @@ msgid "Email" msgstr "Postel" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Anv" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "Liv foñs an Avatar" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "Avatar ebet" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "Niver a evezhiadennoù da ziskouez:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s war %2$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "Dianv" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "Evezhiadennoù nevez" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "war" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s war %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "Diskouez evel :" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "Notennoù a blij din" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "Gellout a rit cheñch ho Kravatar diwar ho pajenn brofil." - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" @@ -2038,120 +2031,121 @@ msgstr "" msgid "Gravatar alignment:" msgstr "Steudañ ar Gravatar :" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "Kreiz" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "Dehou" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "Kleiz" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "Hini ebet" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "Krenn (96 pixels)" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "Bihan (64 piksel)" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "Embarzhit ur skeudenn Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "Gwasket a-nevez" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "Ment an Avatar (px):" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "Titl:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "Aozerien" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "" -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "Ul lec'hienn brevez eo homañ." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.mo index f7c70546fcb915c323147e7cd373188c727deceb..76c850bb05b3db3bd651d80f0f784f1bf707f4ed 100644 GIT binary patch delta 3397 zcmYk-eNa?Y7{~GBVk&~KsAwy4MNxc#5JdzvmC!Un#g|FaEmzoV5m|%<#J7#I)Pz*F z@+GHo?8U4pCno>U94Duoa-6KO9JRDeo2gO%aMWtlX8Qhi4>O+O+0Qxmo_o(Z&pr3j zQrI#xbg5_i*9~O{(VzISy)kF7DV86~xp-sTcpmvPclb$0R~KW(VhUzq3Fc!HcE!`S zeF=4|fgF@0Fb=b^qcI^fg-Q<&%)q|52$_QkVsC7~7~F~-FpQeWZsgB=V2>ZN9z~u1 z3i&fX*!FM8faV6K;2rGF_@-~S=s?3z15ZMAEU*@00qyyyneRgW%zON(-{+|7j-pn0 z+ zFUKNWh3bC-C*vv9M7s1cW-#_al4i!E7FHCpmBpw5m!od52DRcw+itS9pl+}eAHf5t z312{E;Hqt3LrwIKZQsQ{wA=GaRiPWpFw{gv1Kvc<=pWP#JJ4IlyQ6O02Q{H2EXFic zztyPCxdD~ZZK#FpL``%*Dno~H5PpNY-*u#a$lRjB<1qJ7DecP6(~aGz3sX_&M_Z?% zz6T|!40v!VHly~&8S7c}v}4oa2#)9Ui{7skQ)#cn8G8SBP|4-MWz>q@4@Xxt5GT-1 zM@_68HL-fs3L8-?*^Z21cA|FmK~(C$MUrX0LrwT9YA^hWddqG~z5gz@tWukR8ejnG zQKX>;&avkUP&b&3`hqP)O=Jx!Q(I6A*oEr%HtLb=$3i@a>h~XN0&(p4kXF#2iY^?4 z8h9A0<2ZYKnzazQ*388UtVE^uXVgF)lZ;_erW-0F!%>eeAGN>*sEI8>WyYUG{ykJe z9MDQGq9$|$b;H}Xeczss84$fe0y>=UkLouOwScLp8_%?QQTMAyUI4QmHGwcHvwH@R zf2HC>+wrjN@FnVoCs6}@Z_l4YJ)&Px&-yRaja|vnff7;22cVvL4r)T }W@O<+3e z`eIaO7b2e+vji)!9uxHbU!|f8{zY|cH#oYYSk$vjLZx^trr``!hN@8$TZ?*Rn^AAi zK70N%)P%mk$Rk2!?jpMI7N#-2`J0Mnl$;tp(PZ6F`I$s4CREtaW-Y<9F;5ZNwJOtyhDgnrm#iDD zZOovu#Wu!ZpzQ=| Tt<19(?JDiOSBbgAOky~p64s-s4d=$W zWBC>tFEKjoiF5m3&{@heL{X$>%*!~37)h+N$Fy@)%A%Mja4a#zwin?7B1kMH;t7>i zgmzm>_;Or=Z! YwC~#!+X$5rt$)N%bG7DlON!}O zz1$b{S1xNU?pfi=2vk=$jC2|TwT`#i=TruQj<=#BQ12^qf&s@{TI#E*ae~kJYn&?Y zGG9jPkzSiz;XR3~Qs>N0pX;mh*Z2dK=>^`PFVD%!%o>xPnVp_BifZ1d%)HF()>(bm z#kBt9E{lmR^0o~-F8P8h_v@qHfV0Byl>0_HmHu*{Q|Ddblm%AT1uDvYl>w)!+Fui_ ft?~!`PM|JO?$iXUy_Nn_e@1JMlzXnQKXuRl34>7X delta 3521 zcmajgd2EzL7{~EpOM%jIwLpOiT}mqyEIlY!xuJj@MJQfK3#{!H-j?o`wv +Y#~G7^7mz;_-N~3_jK>j}gE{EnWNgCD_=9c# zjv6YPi*gLc;#6#JOu)>e(v1rXuoqS!Ihc*u1GiulHe)+{9hJyF pwdLE-`Uq&t925O;qa4z$kUd%oa9qfQRQ5{~wcnl$Z%@NeZ-=g~chzWQRi}4P! z+oqW9R3a6qepR-;2DLNmZF?IA(z&q1UO0ft@FQd_a|9FdBx(hJpc1-<>eqpW66=CW zBpEgFFjW6hwmlxze+p`+W}+5Y7|;GwHx>5AdV6CNYM^G+JKT#MF@!EWWZQ>P{k}v^ z(1JRwr%)@uYQ2R@s2y3#I8-9>3GBbNqz@N#`Uj%kT|R1Mb5IW~vX-JIEJr=(M{W5! zEWoX({- Q(gSM6!9NA8G-)s53DNyXyNtNfj(aZFLE1 z0w3zttVT`TVDIlj4bY4!_%^El7pR0zpmy*l)H}X{>i;Kd>s_4m+1L>S>i7s1CE!J^ zqz?69Jt~0>sD6$1`m5GAkul9XxEzn7ws?5o$V47wGmL}UnT@Dd+Jsu@yM5VzWp;oI z+M-Xe7+X;*8QCwA&~#Mhb8P!z)cs=A^OfkvI#j>is0B2m#(l$j5VgP-)Y&-IkNwvG zzi~lZd>yqDQOS{x-BI_GPy?o-CKzn*=b+y8Xw-m(_WDwL-G_ST4X8x6p~im=bx7X} zP|?KuQJH;=n&5NfJen5NR$a8$uUl`U4re=eq<=hWYx|(KIs b4t-KNWu`_R>&cs1f|C6X!br!Xd zOQ^*DLgo#GkFYX}=P2utC8Hk5K<&sl)ct(a%I0AOI=B)~paz`9uZ*6bi<)>5>iMOp z9rYnUEv62a<91BY{5PrSfzGLsj)|z1B%|K#Fx1x0#zD9kwKJPhi8Z2LRWs__@`1g7 z6qV4|sOQh3cI*neFeZ)H!TctUiUxL2nKhz1+_AdujZ74cZMeRL(6>Zo7%_^VYxp%r z;SypJkx%Fc?P)@Z1c^BWJ0C7n_zZ00gK@*}M%z?QOeBg370#J?g2*EtBXoLIrW32f zHNMx@P1d{2q_WjEhNJ)P4b)ChMudO6wQ7}lL>A!?lL?h xoQ)_YwXF0O2y aBySqTd3yDz=OW*2g7}9#5-*(D}bx#@fm*+)d;V`X00;o+ni93!R9Y=4$Wr zmee|aU#Mr7l&H|;c*hm`uKOm}gC!oHyV76kl&x{E@vp3QPp|gWd1^h??y_osW#rOW zk9%3Qw`^QW=Bla;Pidv&%dD#QmpRM5L#vimrHr=?ca>+UcWkC-{Lo-gVtw8!r*x^e zwx(@bc502=?{lZ+q}G_Z4`dX2>zo=A$;kKAdh^^lSvk2GS;I53bE)QKXXRy$4Bbww zkBXV)_jxNyoN{kyZIU-CbfI6XEA)5&o35gNGpzJ~ddOSrbu)h@{d`WXPbBkesV{d5XUst1jQ;^^R)UcL diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.po b/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.po index e45527d6000be..1967d5917394d 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-14 20:10:07+0000\n" +"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,30 @@ msgstr "" "Language: bs_BA\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "Marketing" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "Žao mi je, nije vam dozvoljeno pristupiti ovoj stranici." + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "Konekcije" - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "Nekoliko riječi kojima ćete motivirati vaše čitatelje da komentarišu" @@ -246,7 +265,7 @@ msgstr "" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "Sve stranice" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "Naslov" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "Da" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "Ne" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 -msgid "Podcast image" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 -msgid "Mark as explicit" +msgid "Podcast image" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 -msgid "Podcast copyright" +msgid "Mark as explicit" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 -msgid "Podcast summary" +msgid "Podcast copyright" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" +msgid "Podcast summary" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "Sljedeći koraci" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,22 +1240,22 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1278,37 +1279,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "Prekoračili ste dozvoljeni limit za prostor. Molimo vas da obrišete neke fajlove prije ponovnog dodavanja." -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "Promijeni temu" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "Promijeni" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "Uredi stranicu" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "Uredi članak" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "Uredi" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "Ažuriraj" @@ -1332,7 +1333,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1362,7 +1363,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr "Nemate dozvolu za pristup ovoj stranici." -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1383,9 +1384,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1428,56 +1429,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "Najveći postotak fonta:" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "Najmanji postotak fonta:" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "Izuzmi:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "Oblak kategorija" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1623,51 +1625,51 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "Fotografija" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1688,71 +1690,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "Nije moguće dohvatiti tražene podatke." -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "Blog na WordPress.com" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "WordPress.com logo" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "Sakrij" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "Početno" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "od" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "Tema" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "Zasnovano na WordPressu" @@ -1780,7 +1782,7 @@ msgstr "Sačuvaj" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1898,140 +1900,131 @@ msgid "Email" msgstr "Email" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ime" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "Pozadinska boja teksta:" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "Pozadinska boja avatara:" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "Nema avatara" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "(najviše 15)" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "Broj komentara za prikaz:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s na %2$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "Nepoznato" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "Nedavni komentari" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "na" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "Mreža" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "Prikaži kao:" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "Članci koje volim" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "Gravatar možete promijeniti na svojoj stranici profila." - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Tekst prikazan nakon Gravatara. Ovo je neobavezno i može se koristiti kao vaš opis ili opis vašeg bloga." -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar link. Ovo je neobavezni URL koji će se koristiti kada neko klikne na vaš Gravatar." @@ -2039,120 +2032,121 @@ msgstr "Gravatar link. Ovo je neobavezni URL koji će se koristiti kada neko kli msgid "Gravatar alignment:" msgstr "Poravnanje gravatara:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "Veličina:" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "Email adresa:" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Odaberite korisnika ili \"ostalo\" nakon čega je potrebno da upišete korisničku email adresu." -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "Centrirano" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "Desno" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "Lijevo" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "Ništa" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "Veoma veliko (256 piksela)" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "Veliko (128 piksela)" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "Srednje (96 piksela)" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "Malo (64 piksela)" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "Gravatar" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "Umetni Gravatar sliku" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "Nedavno objavljeno" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "Veličina avatara (px):" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "Prikaži sve autore (uključujući i one koji nisu napisali nijedan članak)" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "Naslov:" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "Autori" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "Prikaži mrežu avatara autora." -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "Autorska mreža" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ca.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ca.mo index 28abf204d31fc661810213e6aad46c77f092f226..378b2f3bc0e5032b89959e6be9ad264c307d22de 100644 GIT binary patch delta 2964 zcmYk;eN5F=9LMp)RWu${lm{U}E 5=Qw1uB+bgrf~HFil+X|@}Z!| ztIaL5+8VZKhP%3+X6YJQ!)mLwa`rH@tvQ|3E&ph)?ESg-xb>S~U+0|r`Fq(Vr6IBpG8K9cj!=d;(MOAjaZ*I28MFIG(hg!b Ve}p0zbqI96&An8#d!r`*{t!(ZWkn z&o`mw3)t~4>kgdG`0gYp`oQ}PD5K+;h9998{uW2$5BBpvk+sZqOvZmv3y$F?-9Hx9 z&qB>N0acOds7iQH8=hy!8y!2)go%96iJD+HQeCqT V!peAUrE<+`-3YGX8)GOMEwYU>? z|9LFK?@$RPQ#P%WiG1#uTpHS8VRXQhS}TwwO%3MbN>oDKs2v}){lln4dTqZC^$Jho zT0D -e>b`&M zcx-BPJP|ct2I{$qI0QYI&-$jAMiu%{@3_x;3`fRrC{c-=W?S++=HgGd0At5SU)dtm z&b&wtrUg~%?MU@a4=TYoQHdW#N2NMOLx*MnmFXo^Nw1 6#i5={L47_0 zHDQ^x8g+Q iMVy{ix5| zQP1s1RqhaKp%bWt2C)S%pyn;-CMD2_S=fY1c$-5*8SO<)*n=w3VN^*!M?H8JC*wD$ zo&SZp|8LYpahcJDQjxc1rlG!WWvJ(CQ1jKJ)?0>}$5}-~6RbhzG6B?s-L`)KwX=TI z890Y}cY~-B{(?HR*HJsaiMsC&YQZ6FSM$fCHjsvze?D?X98+Zn8c`WFqcU8LI&AAu z3$`Q2!0bWo=m@H`y{LsgMm={LHP2a8g$9u?khzHK@Fr^B6&$EmegAzlG~xG{ts7Ap z-bQ{q%uoh3ak_OpDxpbOfU{9MY(bs&c2r`!P-iBDTJR0j2HwSXJcC0W8pZDDjU}j^ zR9Y9KGH<{pT!&hC0JY$cs6;QL61|4{+~h
BwfvUnh!pna-BAJ)c;hPfK zEkwS0dvT*WTt4DiB1s)Cy~hQFUR!{8fM_6A5vvIu UxZD z6Wa)FS=W4m!(kSwW3M^*FtLHCA!>>LUwYw>+X2;7S01sL;5WpS5S$}Zt>pC9^&+ NIdz@%z6Ej2g3CaFRv}O?bL>uu8arY{wQAxxS z(})UUC$WoILFn=j9g$Y_5Ubg3`;$@UE|cg9eVs71bPBCjLRT*FQlu6AcUsK}#Qj7W zp=()`$oH)< 5Ux#3aD~^7yy!{@uJ?8L+gePmw=3iwJvO{_^l(>3AQ;@5 z>)smZbbEt7cUz#t?cJ~;u*J7Fl#`kkZcd)!n!MzZyawN9f4e`>mRITR@Rhg=3kqlD z6%^+cdT5q-3Q7u!!>3Yjxx$~NzdmF{a8svU=!>_yLQZCSIGEYzN~#OEJA7^aPWMJ% Su+`rl2o>ezgtM}Dxc&q9d>LN= delta 2916 zcmYk-4NR3)9LMp)MdH;L1XM!dDiEQ@J7TE$!bK%SBY~8OVTiy|D4@WI9?KUpMXOs= zYpbX&ww6WQjajBmb4xeN*_&={Ia}5W=B(z}ELY#(y@#!5{r#MC?sLxhpO=SzF6u8D zhz)WgjWLxIjG2U+FaujL7W*&+hj1KzilKPQdJa9*FQUeoGSL|RGqd |U$7>^fG6Axnzj@sWVS&b&HL-lV& zjn`${cUkvNa*RpmhXc0Z7%HI?I0et3CjJ4V@v8m(FJvxr3u7>XA2nej>iuL}Pe+ZH zf!dLL)It~8dX-}vHewV%bf5;>h3u-?ixGGjUHFczzl(bBBh&;#sGT^033v{*;%nCH zsKiFCx2;Yv`=iXlQ7ei@WjGUcW`(xhgBqa1T8&De7L|BC>S$WA40oX3{|cAjx2S~T z*e=bJi2UxD3<_FdUZBA&wiY8vno?9EHK>&~*m^T6flgcRMjcrXZpJrI2?TSK)ju3n zk3o$Sj}gpo+!V@bn1gz;8?}`^sGaem5_ui9!lS4Gj-yt78ui`<+kVNm|A-oI7}f74 z24irXF_{>O#msLCDClgvtvir+%}$&U#Mz?~>SuY o`Sm8=k|JA6i zu0wX;w4oB+gId4=bm(hdrJzgmJ}Tq0sIC1PHP9tg<|C-1x`FEVxBY!GvunUKYX<7_ z=A(AVW82Gd7WH+g9qpRN{%gWs8ss6=R`sD)`XTa#nd6v?=P?oW@#`#;P>H6Z`pri5 zn~%%UW83$k5 xu)Q?K&BsSoA)VO)Pqy$#r3|!+-P{!L(8Er=msCI4DLDbd`qB?$zsdx&t@?TN! zkD$i+2Q^XHbYnOjlYsi{a#8&kqQ>)}=5tCZXrOYWuc< PBaWF%K@AH~iFi<%m7p%$8q|c<$nl%4 zsFmzSt+W?4(Oal~{itz{qIPBw`GCx6Y{bi`ahGzDw(0v{ML`38f=PN2mC#Sf-w-p5 z8u(vp2rnt2NYu(^pl*3ODxrC(J5qw0Xe}!7jo5}As04>G+@WxTf>v XbL*BB+SBOT#OaA z{S^$Nei*gV*KA#V$DY*`bYW)`_u9q^e4coUc)+$jjoOWcf%+Ez3htxA7veuBwckzb zCLU9Tr=HkJ=)&n~B#H {^yCoF`b&Y!tl|r{eivpF(}{iFFC)_yrBT{O=(&eD;4cOKf30FNQAjLRg=bv= z|7Vcv&5nu*KWJO_`^ussU181jb?r?p&27Gl30GV}o!*C|r}`?RLtVc8F{!TDj;75G z_3drrQnORq+%3)S)SQ$y??7BaWOklAC#x_!t1zp;_kG+=jnk=N+`ccSy&3FloqopU QYe?#LjraGg5A-zu0hBEXKmY&$ diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ca.po b/projects/plugins/wpcomsh/languages/wpcomsh-ca.po index 6eae6c817e773..fbf2f54101787 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ca.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ca.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-14 20:10:07+0000\n" +"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,30 @@ msgstr "" "Language: ca\n" "Project-Id-Version: WordPress.com - Site Helper\n" +#. translators: comments widget: 1: comment author, 2: comment link, 3: comment +#. title +#. translators: comments widget: 1: comment author link HTML, 2: comment link, +#. 3: comment title +#: widgets/class-wpcom-widget-recent-comments.php:342 +#: widgets/class-wpcom-widget-recent-comments.php:387 +msgctxt "widgets" +msgid "%1$s on %3$s" +msgstr "" + +#. translators: %s is a link to the WordPress user profile. +#: widgets/class-gravatar-widget.php:206 +msgid "You can modify your Gravatar from your profile page." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 +msgid "Marketing" +msgstr "Màrqueting" + +#: support-session.php:224 support-session.php:236 +msgid "Sorry, you are not allowed to access this page." +msgstr "No teniu permisos per accedir a aquesta pàgina." + #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 msgid "Plugins" @@ -65,11 +89,6 @@ msgstr "" msgid "Find the perfect theme for your site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Connections" -msgstr "Connexions " - #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 msgid "A few catchy words to motivate your readers to comment" msgstr "Unes poques paraules enganxoses que motivin els lectors a comentar" @@ -246,7 +265,7 @@ msgstr "Plans" msgid "Hosting" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:197 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 msgid "All Sites" msgstr "Tots els llocs web" @@ -438,8 +457,6 @@ msgstr "" msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: feature-plugins/scheduled-updates.php:37 -#: feature-plugins/scheduled-updates.php:38 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 msgid "Scheduled Updates" @@ -449,7 +466,7 @@ msgstr "" msgid "Verify the email address for your domains" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:277 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 msgid "Site setup" msgstr "" @@ -473,11 +490,11 @@ msgstr "" msgid "Install the mobile app" msgstr "Instal·la l'aplicació per a mòbils" -#: imports/utils/class-filerestorer.php:168 +#: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" -#: imports/utils/class-filerestorer.php:98 +#: imports/utils/class-filerestorer.php:97 msgid "No files are queued." msgstr "" @@ -533,12 +550,12 @@ msgstr "" msgid "SQL file not exists" msgstr "" -#: imports/class-backup-import-manager.php:389 -#: imports/class-backup-import-manager.php:430 +#: imports/class-backup-import-manager.php:385 +#: imports/class-backup-import-manager.php:426 msgid "No backup import found." msgstr "" -#: imports/class-backup-import-manager.php:375 +#: imports/class-backup-import-manager.php:371 msgid "An import is already running." msgstr "" @@ -674,7 +691,7 @@ msgstr "" msgid "Enhanced Ownership" msgstr "" -#: notices/anyone-can-register-notice.php:78 +#: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -699,7 +716,7 @@ msgid "File not exists" msgstr "" #: imports/class-backup-import-manager.php:326 -#: imports/class-backup-import-manager.php:349 +#: imports/class-backup-import-manager.php:345 msgid "Could not determine importer type." msgstr "" @@ -736,8 +753,8 @@ msgstr "" msgid "Claim your free one-year domain" msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:148 -#: frontend-notices/gifting-banner/gifting-banner.php:173 +#: frontend-notices/gifting-banner/gifting-banner.php:138 +#: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" @@ -835,7 +852,7 @@ msgstr "" msgid "Personalize newsletter" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" @@ -1046,27 +1063,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "Títol" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" @@ -1078,112 +1095,96 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "Neteja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast summary" msgstr "Resum del Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 -msgid "Podcast talent name" -msgstr "" - #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" +msgid "Podcast talent name" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 @@ -1199,31 +1200,31 @@ msgid "Podcasting" msgstr "" #. translators: %s is the Twitter account name -#: widgets/class-jetpack-widget-twitter.php:74 +#: widgets/class-jetpack-widget-twitter.php:67 msgid "Tweets by %s" msgstr "" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 msgid "Next steps" msgstr "Passos següents" -#: notices/anyone-can-register-notice.php:106 +#: notices/anyone-can-register-notice.php:112 msgid "This may pose a security risk to your site." msgstr "" -#: notices/anyone-can-register-notice.php:101 +#: notices/anyone-can-register-notice.php:106 msgid "It allows a user to post content." msgstr "" -#: notices/anyone-can-register-notice.php:96 +#: notices/anyone-can-register-notice.php:100 msgid "It allows a user to post/modify/delete all content." msgstr "" -#: notices/anyone-can-register-notice.php:91 +#: notices/anyone-can-register-notice.php:94 msgid "It allows a user control over your orders and products." msgstr "" -#: notices/anyone-can-register-notice.php:86 +#: notices/anyone-can-register-notice.php:88 msgid "It allows a user full control over your site and its contents." msgstr "" @@ -1239,21 +1240,21 @@ msgstr "" msgid "The image CDN is disabled because your site is marked Private. If image thumbnails do not display in your Media Library, you can switch to Coming Soon mode. Learn more." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:263 +#: frontend-notices/gifting-banner/gifting-banner.php:250 msgid "Gift the author a WordPress.com plan." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:251 +#: frontend-notices/gifting-banner/gifting-banner.php:238 msgid "Gift the author a WordPress.com plan before it expires in %d day." msgid_plural "Gift the author a WordPress.com plan before it expires in %d days." msgstr[0] "" msgstr[1] "" -#: frontend-notices/gifting-banner/gifting-banner.php:240 +#: frontend-notices/gifting-banner/gifting-banner.php:227 msgid "Gift the author a WordPress.com upgrade." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:213 +#: frontend-notices/gifting-banner/gifting-banner.php:200 msgid "This site's plan has expired." msgstr "" @@ -1277,37 +1278,37 @@ msgstr "" msgid "You have used your space quota. Please delete files before uploading." msgstr "Heu esgotat la quota d'espai. Suprimiu fitxers abans de penjar." -#: private-site/logged-in-banner.php:129 +#: private-site/logged-in-banner.php:127 msgid "Change theme" msgstr "Canvia el tema" -#: private-site/logged-in-banner.php:128 +#: private-site/logged-in-banner.php:126 msgid "Change" msgstr "Canvia" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit page" msgstr "Edita la pàgina" -#: private-site/logged-in-banner.php:115 +#: private-site/logged-in-banner.php:113 msgid "Edit post" msgstr "Edita l'entrada" -#: private-site/logged-in-banner.php:114 +#: private-site/logged-in-banner.php:112 msgid "Edit" msgstr "Edita" -#: private-site/logged-in-banner.php:165 +#: private-site/logged-in-banner.php:163 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 #: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" -#: private-site/logged-in-banner.php:88 +#: private-site/logged-in-banner.php:86 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:84 +#: private-site/logged-in-banner.php:82 msgid "Update" msgstr "Actualitza" @@ -1331,7 +1332,7 @@ msgstr "" msgid "You are currently using PHP %1$s which will no longer receive security updates as of %2$s. Please update to PHP %3$s or higher by changing your hosting configuration." msgstr "" -#: frontend-notices/gifting-banner/gifting-banner.php:219 +#: frontend-notices/gifting-banner/gifting-banner.php:206 msgid "Enjoy this site?" msgstr "" @@ -1361,7 +1362,7 @@ msgstr "" msgid "You do not have permission to access this page." msgstr " No teniu permís per accedir a aquesta pàgina." -#: feature-plugins/masterbar.php:106 +#: feature-plugins/masterbar.php:105 msgid "Set your color scheme on WordPress.com." msgstr "" @@ -1382,9 +1383,9 @@ msgstr "" #. debugging purposes. #. translators: Information about how a managed theme is updated, for debugging #. purposes. -#: feature-plugins/managed-plugins.php:505 -#: feature-plugins/managed-plugins.php:516 -#: feature-plugins/managed-plugins.php:527 +#: feature-plugins/managed-plugins.php:506 +#: feature-plugins/managed-plugins.php:517 +#: feature-plugins/managed-plugins.php:528 msgid "Updates managed by WordPress.com" msgstr "" @@ -1427,56 +1428,57 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:179 +#: widgets/class-wpcom-category-cloud-widget.php:210 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:178 +#: widgets/class-wpcom-category-cloud-widget.php:208 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:168 +#: widgets/class-wpcom-category-cloud-widget.php:200 msgid "Maximum font percentage:" msgstr "Màxim percentatge de font:" -#: widgets/class-wpcom-category-cloud-widget.php:161 +#: widgets/class-wpcom-category-cloud-widget.php:194 msgid "Minimum font percentage:" msgstr "Mínim percentatge de font:" -#: widgets/class-wpcom-category-cloud-widget.php:156 +#: widgets/class-wpcom-category-cloud-widget.php:189 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:153 +#: widgets/class-wpcom-category-cloud-widget.php:187 msgid "Exclude:" msgstr "Excloure:" -#: widgets/class-wpcom-category-cloud-widget.php:146 +#: widgets/class-wpcom-category-cloud-widget.php:181 msgid "Maximum number of categories to show:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:117 +#. translators: link to support doc about categories +#: widgets/class-wpcom-category-cloud-widget.php:141 msgid "If you use more categories on your site, they will appear here." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:18 +#: widgets/class-wpcom-category-cloud-widget.php:29 msgid "Your most used categories in cloud format." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:16 -#: widgets/class-wpcom-category-cloud-widget.php:45 +#: widgets/class-wpcom-category-cloud-widget.php:27 +#: widgets/class-wpcom-category-cloud-widget.php:65 msgid "Category Cloud" msgstr "Núvol de categories" -#: private-site/private-site.php:172 +#: private-site/private-site.php:171 msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." msgstr "" -#: private-site/logged-in-banner.php:83 +#: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:87 +#: private-site/logged-in-banner.php:85 #: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" @@ -1622,51 +1624,51 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:159 +#: widgets/class-aboutme-widget.php:148 msgid "Biography" msgstr "Biografia" -#: widgets/class-aboutme-widget.php:152 +#: widgets/class-aboutme-widget.php:141 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:145 +#: widgets/class-aboutme-widget.php:134 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:130 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:139 +#: widgets/class-aboutme-widget.php:128 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:137 +#: widgets/class-aboutme-widget.php:126 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:135 +#: widgets/class-aboutme-widget.php:124 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:133 +#: widgets/class-aboutme-widget.php:122 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:111 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:115 +#: widgets/class-aboutme-widget.php:104 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:106 +#: widgets/class-aboutme-widget.php:97 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" -#: widgets/class-aboutme-widget.php:40 +#: widgets/class-aboutme-widget.php:41 msgid "The about.me widget is no longer available. To remove this widget, visit your settings. This message is not shown to visitors to your site." msgstr "" @@ -1687,71 +1689,71 @@ msgstr "" msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:37 +#: footer-credit/theme-optimizations.php:59 msgid "Create a free website or blog at WordPress.com" msgstr "Crea un lloc web gratuït o un blog a Wordpress.com" -#: footer-credit/theme-optimizations.php:32 +#: footer-credit/theme-optimizations.php:54 msgid "Create a free website at WordPress.com" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:102 +#: footer-credit/footer-credit/footer-credit.php:104 msgid "Powered by WordPress.com" msgstr "Gràcies a Wordpress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 -#: footer-credit/footer-credit/footer-credit.php:99 -#: footer-credit/theme-optimizations.php:30 -#: footer-credit/theme-optimizations.php:35 +#: footer-credit/footer-credit/footer-credit.php:103 +#: footer-credit/theme-optimizations.php:52 +#: footer-credit/theme-optimizations.php:57 msgid "Blog at WordPress.com" msgstr "Bloc a WordPress.com" -#: footer-credit/footer-credit/footer-credit.php:98 +#: footer-credit/footer-credit/footer-credit.php:102 msgid "A WordPress.com Website" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:97 +#: footer-credit/footer-credit/footer-credit.php:101 msgid "WordPress.com Logo" msgstr "" -#: footer-credit/footer-credit/footer-credit.php:40 -#: footer-credit/footer-credit/footer-credit.php:206 +#: footer-credit/footer-credit/footer-credit.php:41 +#: footer-credit/footer-credit/footer-credit.php:208 msgid "Create a website or blog at WordPress.com" msgstr "" -#: footer-credit/footer-credit/customizer.php:85 +#: footer-credit/footer-credit/customizer.php:103 msgid "Footer Credit" msgstr "Crèdits del peu de pàgina" -#: footer-credit/footer-credit/customizer.php:62 +#: footer-credit/footer-credit/customizer.php:80 msgid "Upgrade to Business" msgstr "" -#: footer-credit/footer-credit/customizer.php:54 +#: footer-credit/footer-credit/customizer.php:72 msgid "Hide (Business Plan Required)" msgstr "" -#: footer-credit/footer-credit/customizer.php:52 +#: footer-credit/footer-credit/customizer.php:70 msgid "Hide" msgstr "Amaga" -#: footer-credit/footer-credit/customizer.php:41 +#: footer-credit/footer-credit/customizer.php:59 msgid "Default" msgstr "Predeterminat" -#: footer-credit/footer-credit-optimizations.php:161 +#: footer-credit/footer-credit-optimizations.php:171 msgid "Design by" msgstr "" -#: footer-credit/footer-credit-optimizations.php:149 +#: footer-credit/footer-credit-optimizations.php:157 msgid "by" msgstr "per" -#: footer-credit/footer-credit-optimizations.php:132 +#: footer-credit/footer-credit-optimizations.php:138 msgid "Theme" msgstr "Tema" -#: footer-credit/footer-credit-optimizations.php:116 +#: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" msgstr "" @@ -1779,7 +1781,7 @@ msgstr "Desa" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:179 +#: private-site/private-site.php:178 msgid "Manage your site visibility settings" msgstr "" @@ -1897,140 +1899,131 @@ msgid "Email" msgstr "Correu electrònic" #: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:129 -#: widgets/class-wpcom-widget-reservations.php:22 +#: widgets/class-aboutme-widget.php:118 +#: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" -#: widgets/class-wpcom-widget-reservations.php:16 +#: widgets/class-wpcom-widget-reservations.php:33 msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:10 -#: widgets/class-wpcom-widget-reservations.php:15 +#: widgets/class-wpcom-widget-reservations.php:27 +#: widgets/class-wpcom-widget-reservations.php:32 msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:408 +#: widgets/class-wpcom-widget-recent-comments.php:476 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:403 +#: widgets/class-wpcom-widget-recent-comments.php:471 msgid "Text background color:" msgstr "Color del fons del text:" -#: widgets/class-wpcom-widget-recent-comments.php:397 +#: widgets/class-wpcom-widget-recent-comments.php:465 msgid "Avatar background color:" msgstr "Color del fons de l'avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:386 +#: widgets/class-wpcom-widget-recent-comments.php:454 msgid "No Avatars" msgstr "Sense Avatars" -#: widgets/class-wpcom-widget-recent-comments.php:379 +#: widgets/class-wpcom-widget-recent-comments.php:447 msgid "(at most 15)" msgstr "(màxim 15)" -#: widgets/class-wpcom-widget-recent-comments.php:373 +#: widgets/class-wpcom-widget-recent-comments.php:441 msgid "Number of comments to show:" msgstr "Nombre de comentaris que cal mostrar:" -#: widgets/class-wpcom-widget-recent-comments.php:306 +#: widgets/class-wpcom-widget-recent-comments.php:362 msgid "There are no public comments available to display." msgstr "" -#. translators: comments widget: 1: comment author, 2: post link -#: widgets/class-wpcom-widget-recent-comments.php:297 -#: widgets/class-wpcom-widget-recent-comments.php:330 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s en %2$s" - -#: widgets/class-wpcom-widget-recent-comments.php:269 +#: widgets/class-wpcom-widget-recent-comments.php:312 msgid "Anonymous" msgstr "Anònim" -#: widgets/class-wpcom-widget-recent-comments.php:35 +#: widgets/class-wpcom-widget-recent-comments.php:56 msgid "Display your site's most recent comments" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:32 -#: widgets/class-wpcom-widget-recent-comments.php:152 +#: widgets/class-wpcom-widget-recent-comments.php:53 +#: widgets/class-wpcom-widget-recent-comments.php:192 msgid "Recent Comments" msgstr "Comentaris recents" -#: widgets/class-jetpack-posts-i-like-widget.php:273 +#. translators: %s is a URL to the widgets settings page. +#: widgets/class-jetpack-posts-i-like-widget.php:277 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:263 +#: widgets/class-jetpack-posts-i-like-widget.php:265 msgid "on" msgstr "a" -#: widgets/class-jetpack-posts-i-like-widget.php:240 +#. translators: %1$s is the post title, %1$s is the blog name. +#: widgets/class-jetpack-posts-i-like-widget.php:242 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s a %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:116 +#: widgets/class-jetpack-posts-i-like-widget.php:117 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "Grid" msgstr "Graella" -#: widgets/class-jetpack-posts-i-like-widget.php:97 +#: widgets/class-jetpack-posts-i-like-widget.php:98 msgid "List" msgstr "Llista" -#: widgets/class-jetpack-posts-i-like-widget.php:95 +#: widgets/class-jetpack-posts-i-like-widget.php:96 msgid "Display as:" msgstr "Mostra com a:" -#: widgets/class-jetpack-posts-i-like-widget.php:90 +#: widgets/class-jetpack-posts-i-like-widget.php:91 msgid "Number of posts to show (1 to 15):" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:27 +#: widgets/class-jetpack-posts-i-like-widget.php:22 msgid "A list of the posts I most recently liked" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:25 -#: widgets/class-jetpack-posts-i-like-widget.php:32 +#: widgets/class-jetpack-posts-i-like-widget.php:20 +#: widgets/class-jetpack-posts-i-like-widget.php:27 msgid "Posts I Like" msgstr "" -#: widgets/class-music-player-widget.php:91 +#: widgets/class-music-player-widget.php:96 msgid "Choose songs" msgstr "" -#: widgets/class-music-player-widget.php:19 -#: widgets/class-music-player-widget.php:96 +#: widgets/class-music-player-widget.php:18 +#: widgets/class-music-player-widget.php:101 msgid "Music Player" msgstr "Reproductor de música" -#: widgets/class-music-player-widget.php:17 +#: widgets/class-music-player-widget.php:16 msgid "A multi-song music player" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:36 +#: widgets/class-jetpack-i-voted-widget.php:30 msgid "I Voted" msgstr "" -#: widgets/class-jetpack-i-voted-widget.php:33 +#: widgets/class-jetpack-i-voted-widget.php:27 msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:204 -msgid "You can modify your Gravatar from your profile page." -msgstr "" - -#: widgets/class-gravatar-widget.php:203 +#: widgets/class-gravatar-widget.php:200 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:202 +#: widgets/class-gravatar-widget.php:199 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Enllaç del gravatar. Això és una URL opcional que s'usarà quan algú faci clic en el teu gravatar. " @@ -2038,120 +2031,121 @@ msgstr "Enllaç del gravatar. Això és una URL opcional que s'usarà quan algú msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:178 msgid "Size:" msgstr "Mida:" -#: widgets/class-gravatar-widget.php:172 +#: widgets/class-gravatar-widget.php:175 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:159 +#: widgets/class-gravatar-widget.php:162 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Seleccioneu un usuari o feu clic a \"personalitzat\" i entreu una adreça de correu electrònic personalitzada." -#: widgets/class-gravatar-widget.php:154 +#: widgets/class-gravatar-widget.php:157 msgid "Center" msgstr "Centre" -#: widgets/class-gravatar-widget.php:153 +#: widgets/class-gravatar-widget.php:156 msgid "Right" msgstr "Dreta" -#: widgets/class-gravatar-widget.php:152 +#: widgets/class-gravatar-widget.php:155 msgid "Left" msgstr "Esquerra" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 -#: widgets/class-gravatar-widget.php:151 -#: widgets/class-widget-top-clicks.php:125 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: widgets/class-gravatar-widget.php:154 +#: widgets/class-widget-top-clicks.php:162 msgid "None" msgstr "Cap" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:151 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:147 +#: widgets/class-gravatar-widget.php:150 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:146 +#: widgets/class-gravatar-widget.php:149 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:145 +#: widgets/class-gravatar-widget.php:148 msgid "Small (64 pixels)" msgstr "Petit (64 pixels)" -#: widgets/class-gravatar-widget.php:102 +#. translators: %s is the URL to the widget settings. +#: widgets/class-gravatar-widget.php:98 msgid "You need to pick a user or enter an email address in your Gravatar Widget settings." msgstr "" -#: widgets/class-gravatar-widget.php:25 +#: widgets/class-gravatar-widget.php:20 msgid "Gravatar" msgstr "" -#: widgets/class-gravatar-widget.php:22 +#: widgets/class-gravatar-widget.php:17 msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:64 +#: widgets/class-wpcom-freshly-pressed-widget.php:83 msgid "Choose an image to display in your sidebar:" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:13 +#: widgets/class-wpcom-freshly-pressed-widget.php:16 msgid "Freshly Pressed" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:10 +#: widgets/class-wpcom-freshly-pressed-widget.php:13 msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:126 -#: widgets/class-wpcom-widget-recent-comments.php:384 +#: widgets/class-widget-authors-grid.php:142 +#: widgets/class-wpcom-widget-recent-comments.php:452 msgid "Avatar Size (px):" msgstr "Mida de l'avatar (px):" -#: widgets/class-widget-authors-grid.php:121 +#: widgets/class-widget-authors-grid.php:137 msgid "Display all authors (including those who have not written any posts)" msgstr "Mostra tots els autors (incloent-hi els que no han escrit cap entrada)" -#: widgets/class-gravatar-widget.php:157 -#: widgets/class-jetpack-i-voted-widget.php:70 -#: widgets/class-jetpack-posts-i-like-widget.php:85 -#: widgets/class-jetpack-widget-twitter.php:145 -#: widgets/class-music-player-widget.php:82 widgets/class-pd-top-rated.php:134 -#: widgets/class-widget-authors-grid.php:115 -#: widgets/class-widget-top-clicks.php:47 -#: widgets/class-wpcom-category-cloud-widget.php:139 -#: widgets/class-wpcom-freshly-pressed-widget.php:60 -#: widgets/class-wpcom-tag-cloud-widget.php:129 -#: widgets/class-wpcom-widget-recent-comments.php:367 -#: widgets/class-wpcom-widget-reservations.php:38 -#: widgets/tlkio/class-tlkio-widget.php:58 +#: widgets/class-gravatar-widget.php:160 +#: widgets/class-jetpack-i-voted-widget.php:81 +#: widgets/class-jetpack-posts-i-like-widget.php:86 +#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 +#: widgets/class-widget-authors-grid.php:131 +#: widgets/class-widget-top-clicks.php:72 +#: widgets/class-wpcom-category-cloud-widget.php:175 +#: widgets/class-wpcom-freshly-pressed-widget.php:79 +#: widgets/class-wpcom-tag-cloud-widget.php:123 +#: widgets/class-wpcom-widget-recent-comments.php:435 +#: widgets/class-wpcom-widget-reservations.php:60 +#: widgets/tlkio/class-tlkio-widget.php:75 msgid "Title:" msgstr "Títol" -#: widgets/class-widget-authors-grid.php:51 +#: widgets/class-widget-authors-grid.php:62 msgid "Authors" msgstr "Autors" -#: widgets/class-widget-authors-grid.php:14 +#: widgets/class-widget-authors-grid.php:17 msgid "Show a grid of author avatar images." msgstr "" -#: widgets/class-widget-authors-grid.php:11 +#: widgets/class-widget-authors-grid.php:14 msgid "Author Grid" msgstr "" -#: private-site/private-site.php:647 +#: private-site/private-site.php:650 msgid "Private Site" msgstr "" -#: private-site/private-site.php:457 private-site/private-site.php:574 -#: private-site/private-site.php:797 +#: private-site/private-site.php:460 private-site/private-site.php:577 +#: private-site/private-site.php:809 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ckb.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ckb.mo index 73e0ec18f631cb86f94e1406374ff95ad253e5f2..a260cba23e94022d2eed9db7a256a78b9f9b278e 100644 GIT binary patch delta 2857 zcmZ9NYiv|S6vt<2krql{mbbMR&|)j}VJT3MXF)&;hy@iW$WoS4XuGhxm4_jfS7~ZB zlDcBV52Qr;h}x9J4+NqifdpgxASUE)SBM6UkC+(Ks7NCE``^7K#7Y16H*;q0Ip?04 z*$$LmD{H!ynHV;-o#+u%mtc$xmmcClOHVc?1!lk;_$W+;^WY-55@x`+Tzd!P&-A&x z2!}Dg3KQX%kPzlNBt( NxSR#^h;Qb)h8n2Ab#OEcLIrAtPKn+54w#0$8$Jv#K&P}&>#w_G z8_M5Js0w`#DW>_=9sdcN^x{1_BySR^>kya @%r)O GSuGw0OjB}s6%-VDzRZim3<;q;3BB`a;QWr;6zvnId7)XwI6}1Y%82cd~=eH z1#du=_%A5OL)fTCVTQ{hsQJ}Ufi}4IYWNJ}!%(;7b9fC#A+AgZU$+rnfJ%H6k1|*Y zn^dA&I@-fmp&XxtD&c9UJ^l&G(ce(((>Y<{B*^ZV>F@+x2K8nA@NxJfR6-+hE V*?f|CBnQuHk2J75oCe3&%6bwweg^z-Q57~+vyiGWWzhIP7Bg0L2b+F? z7NHqP)ht9#d@r49q&;1Mo wgYfR>LE(NjpLUQLHoO im#J99X;4|*cKoiE?vpNwwcaa^b*p(>x}45m!O5{MWpjH4=qEwmgPvd zX%n*0VB<2FO8v6%cfTdv@5S$~X@4WBIn~ wMKAE9kBB z1+9>GpDFj(`2$vE^$uUXk3oHHLycAG_cy3t?`sH|^2T5Y^8sJn7lVMWy(9Tj=F)(F zZ``)EF<9H+3kKUa4Zo7)4eauT@Dj-xvE5VP4+Qp4)hf#y@L3K1kmaqb^Y8U-vqFB$ zTV2gtR%l0U(Aw>-@fAdlq=Y=}DXC*e&X`tIVigz9E-jf|IxA9~y3dnqcg4bXU-Wn^ z96c5b_jlW!(Pq2Hvd_iZ>`uGavb*}bW8p|wT9PN9UNbBD?A~ZI>sw;sSQ`si_aU9= zA-gZuY@fG#qRs8S>Dd)>9X*DtXiKz3eq&)1JsNwH*PWpme51eD?o<@w_ILN=6pwxO z$695da}yXy|JIYE^aw(l@x{H$LWX#nk*_jucrtAzbPkVUyO(_UkjUArEeT8PuJ~G; toO@!;7PDbHg0oLp-$QH?Y?G_APTJ8=nF>3u`H(hE+C2r4gt6ZZ`43knyh{K8 delta 2406 zcmYk-e@vBC9LMo >%NxeAn+ ~Qf6$7{oz_;%=Bj^k`G+-of1Z2TI^D0YbI$WT=bY!9 z??V@B{;CXK%}ER!il4ZfXmT6#680qV59QT6j7i7iScq?722SHfylmT9DaP w`$0aSYgISq3ZwbEm@9Y$wD+dhq5TtA0;E|=N$Tt2E@ zgnGWz_WO`EnOf9~ZT7JLx?#KR*lllYN98~_Dr<*vHICpWJcruS8<>YTG26v1kg+ bw+p`MST?!SS0vD?Vc1anx99w 5mwQjL4GEU(X_Av zR90`oN^C=YHLs!G^aIomTte;G403